MathOnWeb.com


Introduction: Exactly what is algebra?

Algebra is the language of mathematics. In algebra we use letters to represent numbers. Then we can do several things:

First, we can make statements that are generally true without having to be specific. For example if a and b represent any two numbers then we can say that a + b = b + a rather than just saying that for example 5 + 3 = 3 + 5.

Second, algebra is more brief than any human language. It is more brief to say a + b = b + a than to say “when adding two numbers together, it does not matter which number is added to which; the result is the same”.

Finally and most importantly, we can use algebra to solve problems. We use expressions to describe combinations of numbers and we use equations to describe mathematical facts.

For example, suppose that we don’t know Alice and Bill’s ages but we do know that Bill is 6 years older than Alice. We can let a represent Alice’s age in years and b represent Bill’s age in years and then the phrase “6 years older than Alice ” can be written concisely as the expression
6 + a
and the fact that “Bill is 6 years older than Alice” can be written concisely as the equation
b = 6 + a
Values of a and b that make this equation true are said to satisfy the equation. For example the ages a = 10 and b = 16 cause the equation to read 16 = 16 and thus satisfy the equation. So do the ages a = 50 and b = 56, which cause the equation to read 56 = 56.

If we later learn that Bill is 3 times as old as Alice then we can express this fact using another equation
b = 3 · a.
We now have two equations that must both be satisfied.
b = 6 + a
b = 3 · a
This is called a system of equations. You can verify that only the ages a = 3 and b = 9 satisfy both equations.


Algebra can be classified into three broad topics: Simplifying expressions involves learning the properties of exponents, logarithms, various functions, etc. Manipulating expressions involves factoring, adding fractions, completing the square, etc. And solving equations involves learning about quadratic equations, exponential equations, etc. Each of these categories will take about the same amount of time for you to learn (and each takes about 10,000 lines of code to implement in the Algebra Coach.) Let’s get started!