Gamma Function

Introduction To Algebra


unknowns : equations : simultaneous : quadratic


What Is Algebra?

Algebra is an Arabic word meaning bringing together broken parts. It allows the finding of unknown numbers from information given. Here are two examples of the type of problems that can be solved using algebra.

Example 1: When six is added to this number, it gives nine. What is the number?

Example 2: A number is multiplied by itself. Three times that same number is subtracted. Finally, two is added. The total is now zero. What is the number?

Example 1 is trivial. The number has to be three. Example 2 is much harder to guess. I will return to it later.


Rules And Notation

In algebra, letters are used in place of numbers that are not known. These letters are then manipulated in accordance with certain rules until an answer appears. The usual letter for the unknown number is X. Normally, small x is used but this is too similar to the multiplication sign (×) so I will use capital X.

Two numbers added together are shown as:

A + B

Two numbers subtracted are shown as:

A - B

Two number multiplied together are shown as:

A × B

but more commonly:

AB

Two number divided are shown as:

A / B

A number multiplying a sum of numbers is shown as:

A(B + C)

This can be expanded by multiplying everything inside the brackets by the number outside:

AB + AC

A number dividing a sum of numbers is shown as:

(B + C) / A

This can be expanded by dividing everything inside the brackets by the number outside:

B / A + C / A

Two positive numbers multiplied together give a positive number:

A × A = A

Two negative numbers multiplied together also give a positive number:

-A × -A = A

A negative numbers multiplied by a positive number gives a negative number:

-A × A = A


Solving Simple Equations

Returning to Example 1 from above, this can be written in algebra as

X + 6 = 9

This is called an equation because there is an equals sign. If we want to find the value of the unknown number, X, we have to get the X on one side of the equation and the numbers on the other side.

We can do whatever we like to this equation as long as we do the same to both sides of the equation.

We can easily isolate the X by subtracting 6 from both sides:

X + 6 = 9

X + 6 - 6 = 9 - 6

X = 3

So the unknown number is 3. It is always a good idea to check an answer by puting the value 3 back in the original equation:

Checking by replacing X with 3 gives: 3 + 6 = 9 ..... correct.

Example 2 from above will be dealt with later.

Example 3: Solve the equation X - 6 = 2.

Again, we have to isolate the X on one side of the equation and the numbers on the other side. This can be done by adding 6 to both sides.

X - 6 = 2

X - 6 + 6 = 2 + 6

X = 2 + 6

X = 8

Checking by replacing X with 8 gives: 8 - 6 = 2 ..... correct.

Example 4: Solve the equation 2X - 3 = -1

This one is a little more complicated. The X is multiplied by 2 and then 3 is subtracted. We must deal with the 3 being subtracted first. We can do this by adding 3 to both sides.

2X - 3 = -1

2X - 3 + 3 = -1 + 3

2X = 2

The next step is to divide both sides by 2.

2X = 2

2X / 2 = 2 / 2

X = 1

Checking by replacing X with 1 gives: (2 × 1) - 3 = 2 - 3 = -1 ..... correct.

Example 5: Solve the equation, 2(X + 3) = 4.

In this equation, the 2 multiplies everything inside the bracket. This 2 must be dealt with first. It is removed by dividing both sides by 2.

2(X + 3) = 4

2(X + 3) / 2 = 4 / 2

(X + 3) = 2

X + 3 = 2

Now we can subtract 3 from both sides.

X + 3 - 3 = 2 - 3

X = -1

Checking by replacing X with -1 gives: 2 × (-1 + 3) = 2 × 2 = 4 ..... correct.

Example 6: Solve the equation 4 / (X + 1) = 2.

In this equation the part containing the X is at the bottom. The X + 1 in the bracket is all dividing the 4. It must be brought to the top. This is done by multiplying both sides by (X + 1).

4 / (X + 1) = 2

4 = 2(X + 1)

The next step is to divide both sides by 2.

4 / 2 = X + 1

2 = X + 1

Subtract 1 from both sides.

2 = X + 1

2 - 1= X + 1 - 1

1= X or X = 1

Checking by replacing X with 1 gives: 4 / (1 + 1) = 4 / 2 = 2 ..... correct.

Example 7: Solve the equation -X - 3 = -2.

The X has a minus sign in front of it. It is being multipied by -1:

-1X - 3 = -2

To remove the -1 we need to multiply both sides by -1.

-1X - 3 = -2

-1 × (-1X - 3) = -2 × -1

X + 3 = 2

Multiplying by -1 is the same as changing the signs throughout. The next step is to subtract 3 from both sides.

X + 3 - 3 = 2 - 3

X = -1

Checking by replacing X with -1 gives: -(-1) - 3 = 1 - 3 = -2 ..... correct.

Note that two minuses multiplied together make a plus.

Example 8: Solve the following equation, 2X - 5 = 4 - X.

The usual rules apply: get the X on one side and the numbers on the other side. Add X to both sides to remove the X from the right hand side.

2X - 5 = 4 - X

2X - 5 + X = 4 - X + X

2X + X - 5 = 4

Two Xs and a single X can be added to give 3 Xs.

2X + X - 5= 4

3X - 5 = 4

Add 5 to both sides.

3X - 5 = 4

3X - 5 + 5 = 4 + 5

3X = 9

Divide both sides by 3.

3X = 9

3X / 3 = 9 / 3

X = 3

Checking by replacing X (in 2X - 5) with 3 gives: (2 × 3) - 5 = 6 - 5 = 1

Checking by replacing X (in 4 - X) with 3 gives: 4 - 3 = 1 ..... both sides agree.


Simultaneous Equations

So far we have had equations with a single unknown number. What if we have two unknown numbers? Let us look at the equation X + Y = 3. This can be satisfied by:

X = 1 and Y = 2 (because 1 + 2 = 3).

But that is not the only answer.

X = 0 and Y = 3 (because 0 + 3 = 3).

X = -1 and Y = 4 (because -1 + 4 = 3).

X = 4 and Y = -1 (because 4 + -1 = 4 - 1 = 3).

In fact, an equation with two unknowns has an infinite pair of answers. To fix a single pair of numbers as the answer, we need another equation.

A pair of equations, each with two unknown numbers are called Simultaneous Equations.

Example 9: Solve the simultaneous equations: X + Y = 3 and X - Y = 7.

Firstly we list and number the two equations:

X + Y = 3 ..... (i)
X - Y = 7 ..... (ii)

Next we manipulate the two equations to produce a new equation that eliminates either X or Y from one of the equations. In the above example we can do that by adding the two equations (i) and (ii).

X + Y + (X - Y) = 3 + 7 ..... (i) + (ii)

X + Y + X - Y = 10

X + X = 10

2X = 10

X = 5

This gives us a value for X. By replacing X in (i) with 5 we can get a value for Y.

X + Y = 3 ..... (i)

5 + Y = 3

5 + Y - 5 = 3 - 5

Y = -2

So we have a pair of values, X = 5 and Y = -2. These can be checked by putting them into (ii).

Checking the values, X = 5, Y = -2 in (ii) gives: X - Y = 5 - (-2) = 5 + 2 = 7 ..... correct.

Example 10: Solve the simultaneous equations: 2X + 3Y = -4 and X - Y = 3.

List and number the two equations:

2X + 3Y = -4 ..... (i)
X - Y = 3 ..... (ii)

A simple addition or subtraction is not sufficient to eliminate either X ot Y. We need to begin by doubling (ii).

2X + 3Y = -4 ..... (i)
2X - 2Y = 6 ..... (ii) × 2 .... (iii)

We can now subtract the two equations.

2X + 3Y - (2X - 2Y) = -4 - 6 ..... (i) - (iii)

2X + 3Y - 2X + 2Y = -10

3Y + 2Y = -10

5Y = -10

Y = -2

We now have our value for Y. By replacing Y in (i) with -2 we can get a value for X.

2X + 3Y = -4 ..... (i)

2X + (3 × -2) = -4

2X - 6 = -4

2X = -4 + 6

2X = 2

X = 1

Again, we have a pair of values, X = 1 and Y = -2. These can be checked by putting them into (ii).

Checking the values, X = 1, Y = -2 in (ii) gives: X - Y = 1 - (-2) = 1 + 2 = 3 ..... correct.


Quadratic Equations

It is now time to look at Example 2 from the top of this web page.

Example 2: A number is multiplied by itself. Three times that same number is subtracted. Finally, two is added. The total is now zero. What is the number?

This can be written in equation form as:

X2 - 3X + 2 = 0

An equation where X squared occurs with X and numbers is called a Quadratic Equation. Quadratic Equations generally have two answers rather than one. In other words, there are two values of X that can satisfy the equation.

There are two methods of solving Quadratic Equations. One is called factorisation. An equation of the form

AX2 + BX + C = 0 (where A, B and C are numbers and are called coefficients).

can be broken into a form like

(X + D)(X + E) = 0 (where D and E are numbers).

This process is trial and error. For the equation, X2 - 3X + 2 = 0 this becomes

(X - 2)(X - 1) = 0

Note: When you multiply out the two brackets, you multiply each term in the first bracket by each term in the second bracket:

(X - 2)(X - 1) = (X × X) - 2X - X + 2 = X2 - 3X + 2

More algebraic expansions can be found in the Pascals' Triangle essay.

Let us look again at (X - 2)(X - 1) = 0. This is a multiplication of the form

G × H = 0

When two numbers are multiplied together and give zero, either G must be zero or H must be zero. So, when (X - 2)(X - 1) = 0,

Either X - 2 = 0 or X - 1 = 0.

The first is satisfied when X = 2, the second when X = 1. These are the two values for the equation X2 - 3X + 2.

Checking by replacing X with 2 gives: 22 - (3 × 2) + 2 = 4 - 6 + 2 = 0 .... correct.

Checking by replacing X with 1 gives: 12 - (3 × 1) + 2 = 1 - 3 + 2 = 0 .... correct.

A better method of solving Quadratic Equations is by using the formula below.

When AX2 + BX + C = 0,

X = (-B + Ö (B2 - 4AC)) / 2A

X = (-B - Ö (B2 - 4AC)) / 2A

This is the Quadratic Formula.

For the equation, X2 - 3X + 2,

A = 1, B = -3, C = 2.

Using the Quadratic Formulas above we get:

X = (-B + Ö (B2 - 4AC)) / 2A

= -((-3) + Ö (-32 - 4 × 1 × 2)) / (2 × 1)

= (3 + Ö (9 - 8)) / 2

= (3 + Ö 1) / 2

= (3 + 1) / 2 = 4 / 2 = 2.

and

X = (-B - Ö (B2 - 4AC)) / 2A

= -((-3) - Ö (-32 - 4 × 1 × 2)) / (2 × 1)

= (3 - Ö (9 - 8)) / 2

= (3 - Ö 1) / 2

= (3 - 1) / 2 = 2 / 2 = 1.

Again we end up with X = 2 and X = 1.

Example 11: Solve the Quadratic Equation, X2 - 5X + 6 = 0.

The coefficients are A = 1, B = -5, C = 6.

Using the Quadratic Formulas we get:

X = (-B + Ö (B2 - 4AC)) / 2A

= -((-5) + Ö (-52 - 4 × 1 × 6)) / (2 × 1)

= (5 + Ö (25 - 24)) / 2

= (5 + Ö 1) / 2

= (5 + 1) / 2 = 6 / 2 = 3.

and

X = (-B - Ö (B2 - 4AC)) / 2A

= -((-5) - Ö (-52 - 4 × 1 × 6)) / (2 × 1)

= (5 - Ö (25 - 24)) / 2

= (5 - Ö 1) / 2

= (5 - 1) / 2 = 4 / 2 = 2.

We end up with X = 2 and X = 3.

Checking by replacing X with 2 gives:

22 - (5 × 2) + 6 = 4 - 10 + 6 = 0 .... correct.

Checking by replacing X with 3 gives:

32 - (5 × 3) + 6 = 9 - 15 + 6 = 0 .... correct.

Example 12: Solve the Quadratic Equation, (X - 1)(X + 2) = -1 - X - 2X2 .

This equation needs to be rearranged. Firstly we multiply out the left hand side:

(X - 1)(X + 2) which expands to X2 + X - 2

The full equation now becomes

X2 + X - 2 = -1 - X - 2X2

Getting every term onto the left hand side:

3X2 + 2X - 1 = 0

A = 3, B = 2, C = -1.

Using the Quadratic Formulas we get:

X = (-B + Ö (B2 - 4AC)) / 2A

= -(2 + Ö (22 - 4 × 3 × -1)) / (2 × 3)

= (-2 + Ö (4 - (-12))) / 6

= (-2 + Ö 16) / 6

= (-2 + 4) / 6 = 2 / 6 = 1 / 3.

and

X = (-B - Ö (B2 - 4AC)) / 2A

= -(2 - Ö (22 - 4 × 3 × -1)) / (2 × 3)

= (-2 - Ö (4 - (-12))) / 6

= (-2 - Ö 16) / 6

= (-2 - 4) / 6 = -6 / 6 = -1.

We end up with X = -1 and X = 1 / 3.

Checking by replacing X with -1 gives:

3 × -12 + (2 × -1) - 1 = 3 - 2 - 1 = 0 .... correct.

Checking by replacing X with 1 / 3 gives:

3 × (1 / 3)2 + (2 × (1 / 3)) - 1 = 1 / 3 + 2 / 3 - 1 = 0 .... correct.


© 2000 Kryss Katsiavriades


Related Pages

Introduction To Numbers
Introduction to different types of numbers: Real, Imaginary, Rational, Irrational, Transcendental.

The Binomial Theorem
A series devised by Isaac Newton that is used for calculations. More on indices: roots and powers. Factorials. Combinations.

Trigonometric Equations
How to solve equations containing sines, cosines and tangents.


Check out mathematics books at Amazon....

Amazon.Com   Amazon.Co.UK


KryssTal Banner

[Home Page] [Mathematics Page]
[Introduction to Numbers] [Pascal's Triangle] [Trigonometry]
[Look at Logarithms] [Trigonometric Equations]
[Fun With Formulas]

Comments, answers and ideas to Kryss webmaster@krysstal.com


1