Friday, February 15

Gaussjordan elimination method



With the concept of matrices one can solve the system of linear equations apart from usual algebraic methods. Even in matrices topic, a system there are different methods to solve and one such method is called as Gauss Jordan elimination method named after the two mathematicians who introduced this elimination method. It is also called in short as Gauss elimination method or as Jordan elimination.
Let us first study the concept behind the Gauss elimination method. A system of equations is expressed in the matrix form as, AX = B, where A is the matrix of the coefficients, X is the matrix of the variables and B is the matrix of the constants on the right side of the system of equations. If the augmented matrix [A¦B] can be expressed in reduced row echelon form, by the method of Gauss-Jordan, that is, in the form [I¦C] (I being the identity matrix), then X = C, which gives us the solution to the system.
Now let us do Gauss-Jordan elimination step by step, with an example for clear understanding. Let a system of equations is,


-3x + 4y + z = -5
x +3y -2z = -6
2x –y + 3z = 9


   Then,A is,
-3
4
1
1
3
-2
2
-1
3




x
y
z
X is, 



-5
-6
 9
B is



The following are the steps of elimination.
-3
4
1
-5
1
3
-2
-6
2
-1
3
9

[A│B]


1
-4/3
-1/3
5/3
1
3
-2
-6
2
-1
3
9
[R1│-3]



1
-4/3
-1/3
5/3
0
13/3
-5/3
-23/3
2
-1
3
9
[R2│-R1]



1
-4/3
-1/3
5/3
0
13/3
-5/3
-23/3
0
5/3
11/3
17/3
[R3-2R1]



1
-4/3
-1/3
5/3
0
1
-5/13
-23/13
0
5/3
11/3
17/3
[R2/(13/3]



1
-4/3
-1/3
5/3
0
1
-5/13
-23/13
0
 0
168/39
336/39
[R3│-(5/3)R2]



1
-4/3
-1/3
5/3
0
1
-5/13
-23/13
0
 0
  1
   2
[R3/(168/39)]



1
-4/3
   0
 7/3
0
1
-5/13
-23/13
0
 0
   1
   2
[R1+(R3/3)]



1
-4/3
   0
7/3
0
1
   0
 -1
0
 0
1
   2
[R2+(5R3/13)]



1
  0
   0
1
0
1
   0
-1
0
 0
  1
2
[R1+(4R2/3)]



Now the finally reduced matrix is in the form [I│C], where,

1
-1
2
           C and therefore X = 




Hence, the solution to the given system of equations is, x = 1, y = -1 and z = 2. 
Thus, we had seen the used of the elimination method introduced by Gauss and Jordon.



Tuesday, February 5

Learning to find the determinant value of a 3x3 matrix



Consider a matrix A. If A is a square matrix then there is some value that can be assigned to A. This is called the determinant of matrix A. It is denoted by the symbol |A| or det(A). The entries of the matrices are used and an arithmetic expression is formed out of them to come to a value of the matrix. Such square matrices are most commonly used in solving system of linear equations. If the number of variables in the system is 2, then the square matrix would be a 2x2 matrix. Similarly if the number of variables in the system is n, then the square matrix would be an nXn matrix.
Determinant of a 3x3 matrix:
The determinant of a 3x3 matrix is also called a third order determinant. If we have to solve a system of three simultaneous linear equations in three variables, we shall have to deal with third order determinants or 3x3 determinant. For real numbers a1, a2, a3, b1, b2, b3, c1, c2, c3, the symbol
|a1 a2 a3|
|b1 b2 b3|
|c1 c2 c3|

Represents the determinant of 3x3 matrix.

The numbers a1, a2, a3, b1, b2, b3, c1, c2, c3 are the entries or elements of the det.  The first, the second and the third rows of the det are respectively: a1, a2, a3; b1, b2, b3 and c1, c2, c3. The first, the second and the third columns are respectively;
a1 a2 a3
b1; b2; b3;
c1 c2 c3

The value of this determinant of 3x3 matrix is defined as:

|a1 a2 a3|
|b1 b2 b3|
|c1 c2 c3|

= a1*|b2 b3| - a2 * |b1 b3| + a3 * |b1 b2|
          |c2 c3|            |c1 c3|             |c1 c2|

= a1 * (b2c3 – b3c2) – a2 * (b1c3 – b3c2) + a3 * (b1c2 – b2c1)

The above formula can be used to find the value of any 3x3 determinant. This is not the only method used to evaluate a 3x3 determinant. We can also use the Sarrus’ expansion method. It is as follows:
Suppose D
= |a b c|
   |d e f|
   |g h i|
We write five columns like this:

a b c a b
d e f d e
g h I g h
Then we multiply the terms long the red and blue lines as shown in the picture below:

The red diagonals are aei, bfg and cdh. The blue diagonals are gec, hfa and idb.
Then D = aei + bfg + cdh – gec – hfa - idb

Tuesday, January 22

Solution of a quadratic equation by completing the square



One method of obtaining the roots of a quadratic equation is the factoring method. Another method that is used is completing the square method.

Consider the following situation:
The product of Sara’s age (in years) two years ago and her age four years from now is one more than twice her present age. What is her present age?
To answer this, let her present age (in years) be = x. Then the product of her ages two years ago and four years from now is (x-2)*(x+4).
Therefore, (x-2)*(x+4) = 2x+1
I.e, x^2 + 2x – 8 = 2x + 1
i.e, x^2 – 9 = 0

So Sara’s present age satisfies the quadratic equation x^2 – 9 = 0
We can write this as x^2 = 9. Taking square roots, we get x = 3 or x = -3. Since age is always a positive number, x = 3 would be our answer.

Now consider the quadratic equation (x+2)^2 – 9 = 0. To solve this we can write it as (x+2)^2 = 9. Taking roots we have x+2 = 3 and x+2 = -3. Therefore x = 1 or x = -5. These are the roots.

In both the examples above, the term containing x is completely inside a square, and we found the roots easily by taking square roots. But what if we are given the equation x^2 + 4x – 5 = 0 to solve? We would probably apply factorization unless we (somehow!) realize that x^+4x-5 = (x+2)^2 – 9.

So solving x^2+4x-5 = 0 is equivalent to solving (x+2)^2-9 = 0, which we have seen is faster. In fact, we can convert any quadratic equation to the form (x+a)^2 – b^2 = 0 and then we can easily find its roots. This process is called completing a square.

Suppose we were to complete the square for x^2+4x. The process is as follows:
X^2+4x
=(x^2 + (4/2)x) + (4/2)x
= x^2+2x+2x
= (x+2)x + 2*x
= (x+2)x + 2*x + 2*2 – 2*2
= (x+2)x + (x+2)2 – 2*2
= (x+2)(x+2) – 2^2
= (x+2)^2 – 4
So, x^2+4x-5 = (x+2)^2 -4 -5 = (x+2)^2 – 9.
So turning x^2+4x-5 to (x+2)^2-9 makes a complete square of the expression.

In brief, this can be shown as follows:
X^2+4x = (x+(4/2))^2 – (4/2)^2 = (x+(4/2))^2 – 4
So, x^2+4x-5 = 0 can be rewritten as
(x+(4/2))^2 -4-5 = 0
i.e., (x+2)^2 – 9 = 0. This was the completing square method in brief.

Thursday, January 17

Addition of like fractions



We know that whole numbers can be added, subtracted, divided or multiplied. Similarly fractions can also be added, subtracted, divided or multiplied. A problem of addition of fractions can be of either of the two types:
(a) Adding fractions like denominators
(b) Adding fractions – unlike denominators

Adding like denominators fractions:

Adding fractions with like denominators word problems may be worded using different terms such as: “How to add fractions with common denominators?’ or ‘adding fractions with same denominators’.  These words, “common denominators” or “ same denominators” mean the same thing as “like denominators”. By definition, if two fractions have the same or equal denominators they are called, like fractions.

For being able to add fractions, the denominators have to be equal or same. In other words, for adding fractions it is important that all the addends are like fractions and have the same common denominator. For adding fractions with unlike denominators, we first make the denominators equal by taking the lowest common multiple of the denominators and converting each of the fractions to its corresponding like fraction that has denominator equal to the lowest common multiple found.

For adding like fraction, the following steps are to be followed:

Step 1: Make sure that the fractions are like fractions. That means, ensure that the denominators of all the fractions to be added are equal.
Step 2: Add up all the numbers on the numerators of all the fractions.
Step 3: Put the result found in step 2 over the common denominator that we confirmed in step 1.
Step 4: Simplify the fraction if needed. That is, reduce the fraction to its lowest terms if needed.

Let us illustrate the above process with an example:

Example 1: Add 1/10, 3/10, 1/10

Solution:
Step 1: The fractions to be added are 1/10, 3/10 and 1/10. Note that the denominators of all the three fractions are same and equal to 10. So we can move on to step 2.

Step 2: The numerators of the fractions are 1,3 and 1. Adding them we have,
1 + 3 + 1 = 5.

Step 3: The result found in step 2 was the number 5. We put this number over the common denominator that we confirmed in step 1 which was 10. So we have,
= 5/10

Step 4: Now we reduce the fraction thus found to its lowest terms. So,
5/10 = (5*1)/(5*2), the common factor 5 cancels out and we are left with,
= ½ <- answer.="answer." p="p">

Wednesday, January 2

Word Problems on Addition


Word problems in mathematics mean a text representation of a mathematical expression. Word problems make it easy for one to solve a problem. Words problems include all the four mathematical operations – addition, subtraction, multiplication and division. Let’s have a look at word problems on addition in this post.
Word problems on addition are nothing but a text representation of addition operation. For example: Maria bought nine bed rails from Bed Guard India
collection online. Shiva gave three Bed Guard India bed rails to Maria. How many number of bed rails is Maria left with? This problem is the word problem of addition operation (9+3=?)

Solving word problems on addition:

Solving word problems on addition include three steps. Firstly, identify the numbers to be added. Secondly, convert the word problem into a mathematical additional operation and finally add the numbers. For example: Patrick bought two Angry Bird toys from children online shopping store. Joe bought five Chota Bheem toys from the same children online shopping
store. He gave these five toys to Patrick. How many toys do Patrick has now? Identifying the numbers, Patrick bought 2 toys and Joe bought 5 toys. Converting the word problem into mathematical operation, (2+5); adding the numbers (2+5=7). Thus, the answer is 7 toys.

Examples of Word Problems on Addition

1. Mary has one baby bottle from Bottle Sterilizer India collection. Joe bought 2 baby bottles from Bottle Sterilizer India
from online store and Thomas bought 5 baby sterilizers from local store. Three of them gave these to Philip. How many baby bottles and sterilizer are there in total with Philip?Answer: 1 baby bottle + 2 baby bottles + 5 baby sterilizers
(1+2+5) = 8 baby products from Bottle Sterilizer India
collection.2. There are five play schools in the city. One play school is in the process of construction and Thomas is planning to complete 2 play schools in two different corners of the city by the end of next year. How many play schools will be there by the end of next year?
Answer: 5 play schools + 1 constructing play school + 2 planned play school
(5+1+2) = 8 play schools in the city by the end of next year.
These are examples of word problems on addition.

Friday, December 28

Pronouns and its types


Pronoun is one of the parts of speech in English grammar. Pronoun is a part of speech that is used instead of noun. It is used to reduce repeated use of noun in a conversation. Examples of pronouns are he, she, they, them, him, and it and so on. For example: Mary got a HCL kids laptop yesterday. She bought it for her niece. (Here, ‘she’ is used instead of using ‘Mary’ again.) There are six types of pronouns. Let’s have a look at each of them.

Personal Pronouns:
Personal pronouns are types of pronouns that are used as substitute for proper or common nouns. Examples of personal nouns are: I, we, our, he, she, mine, his, her, and they and their. For example: I bought a HCL kids’ laptop from online kids store few days back.

Demonstrative Pronouns:
Demonstrative pronouns are types of pronouns that are used to point out objects. Examples of demonstrative pronouns are: this, that, these, those and more. For example: That baby bottle is of Nuby bottles brand.

Indefinite Pronouns:
Indefinite pronouns are types of pronouns that are used to refer general things or people in general way without specifying anyone. Examples of indefinite pronouns are: nobody, somebody, everybody and more. For example: One can buy Nuby bottles for kids’ online stores as well.

Distributive Pronouns:
Distributive pronouns are types of pronouns that are used to refer two or more persons or things at the same time. Examples of distributive pronouns are: each, either, neither and so on. For example: She can buy either Himalaya baby soap or Johnson & Johnson’s baby soap for her baby.

Relative Pronouns:
Relative pronouns are types of pronouns that are used to relate a subordinate clause to the rest of the sentence. Examples of relative pronouns are: who, whose, whom, which and so on. For example: For whom are you buying this Himalaya baby soap ?

Interrogative Pronouns:
Interrogative pronouns are used for asking questions. Examples of interrogative pronouns are what, which, who, whose, whom and so on. For example: What Christmas gift do you want?
These are the types of pronouns.

Friday, December 21

Verb and its types



Verb is one of the eight parts of speech in English grammar. Verb is a part of speech that describes an action or indicates a state of being. For example: Mary bought BSA stroller for her baby from online baby shop. There are different types of verbs. Let’s identify the various types of verbs and its definitions in this post.
Transitive and Intransitive Verb:
Transitive verb is a type of verb that involves a direct object while on the other hand; intransitive verb is a type of verb that doesn’t involve a direct object.

Examples of Transitive Verb:
Mary bought BSA stroller from online baby shop.
She eats fish.
Kids love games.
Here, all the sentences have direct object such as BSA stroller, fish and games respectively.

Examples of Intransitive Verb:
The boy throws.
He walks very fast.
She reads well.
Here, all the three sentences do not have a direct object.

Main and Auxiliary Verb:
A sentence can have two inter-related verb that are termed as main and auxiliary verb. The main verb is the type of verb that describes the primary action and auxiliary verb is the type of verb that adds detail to it. Some of the most popularly used auxiliary verbs are to be, to have, to do and more. Auxiliary verbs are also referred as helping verbs. For example:
She will buy gravity destroyers toys for her son’s third birthday. (Here, ‘will’ is the auxiliary verb that is helping the main verb ‘buy’ to convey the meaning.)
Gravity destroyers toy can be bought from online shopping centers. (Here, ‘can be’ is the auxiliary verb that is helping the main verb ‘bought’.)

Modal Verbs:
Modal verbs are type of auxiliary verb that adds mood to a sentence, most commonly imperative and probability. For example:
She should buy the gift before Christmas. (Here, ‘should’ is the modal verb.)
I might visit my cousin’s place this weekend. (Here, ‘might’ is the modal verb.)
I wouldn’t have done that if I was you. (Here, ‘wouldn’t’ is the modal verb.)
These are some of the basic types of verb and its examples.