Content On This Page | ||
---|---|---|
Introduction to Algebraic Identities | Standard Algebraic Identities and their Derivations | Using Identities for Simplification and Operations |
Algebraic Identities
Introduction to Algebraic Identities
Equality vs. Identity
In mathematics, specifically in algebra, we frequently work with statements that express equality between two expressions. These statements are generally called equations.
An equation is a mathematical statement that asserts that two expressions have the same value. Equations often involve one or more variables. The crucial aspect of many equations is that they are only true for specific values of the variable(s) involved, called the solutions or roots of the equation. Some equations might have a limited number of solutions, one solution, no solutions, or infinitely many solutions.
Example of an equation that is true for only some values of the variable:
$x + 5 = 12$
This equation is only true when the value of $x$ is exactly $7$. If $x$ is any other number, the statement is false. The solution set is $\{7\}$.
Example of an equation that is true for no values of the variable:
$x + 1 = x + 2$
If we try to solve this equation by subtracting $x$ from both sides, we get $1 = 2$, which is a false statement. No value of $x$ can make this equation true. The solution set is empty ($\emptyset$).
An identity is a very special type of equality statement. Unlike a typical equation, an algebraic identity is an equality between two algebraic expressions that holds true for all possible values that can be substituted for the variables involved, as long as the expressions are defined for those values.
Definition of an Algebraic Identity
An algebraic identity is an equality statement between two algebraic expressions that is true for every value of the variable(s) for which both expressions are defined.
In essence, an identity represents a fundamental equivalence between two different forms of an algebraic expression. One side of the identity can often be transformed into the other side using the basic properties of arithmetic (like the commutative, associative, and distributive properties).
Example:
$2(x + 1) = 2x + 2$
[Distributive Property Example]
This is an algebraic identity. Let's test it with a few values for $x$:
- If $x = 3$: Left side $= 2(3 + 1) = 2(4) = 8$. Right side $= 2(3) + 2 = 6 + 2 = 8$. Left side = Right side.
- If $x = -1$: Left side $= 2(-1 + 1) = 2(0) = 0$. Right side $= 2(-1) + 2 = -2 + 2 = 0$. Left side = Right side.
- If $x = 0$: Left side $= 2(0 + 1) = 2(1) = 2$. Right side $= 2(0) + 2 = 0 + 2 = 2$. Left side = Right side.
No matter what real number we substitute for $x$, the equality $2(x+1) = 2x+2$ will hold. This identity is simply a statement of the distributive property of multiplication over addition.
Identities are like fundamental rules or transformations that can be applied to rewrite algebraic expressions in different equivalent forms, which is extremely useful in simplifying expressions and solving problems.
The Importance of Algebraic Identities
Algebraic identities are not just mathematical curiosities; they are powerful tools that simplify calculations and manipulations in algebra and beyond. Their importance stems from the fact that they represent universal truths about algebraic expressions.
Key reasons why algebraic identities are important:
Simplifying Algebraic Expressions:
Identities provide standard formulas for expanding products or factoring expressions. For instance, knowing the identity $(a+b)^2 = a^2 + 2ab + b^2$ allows you to quickly expand $(x+3)^2$ as $x^2 + 6x + 9$ without performing the full multiplication $(x+3)(x+3)$. Similarly, identities like $a^2 - b^2 = (a-b)(a+b)$ are essential for factorising expressions like $x^2 - 25$.Performing Algebraic Operations Efficiently:
Identities can turn complex multiplications or divisions into simpler steps. Multiplying using identities like $(a+b)(a-b) = a^2 - b^2$ is much faster than using direct distribution.Solving Equations:
Many techniques for solving polynomial equations rely on factoring the polynomial expression. Algebraic identities are crucial tools for factoring, especially for quadratic and some higher-degree polynomials. For example, recognising that $x^2 - 5x + 6$ is in a form related to $(x-a)(x-b)$ helps in factoring it to $(x-2)(x-3)$, which leads to the roots $x=2, x=3$ for the equation $x^2 - 5x + 6 = 0$.Evaluating Numerical Expressions:
Identities can simplify calculations involving specific numbers. For example, to calculate $103^2$, you could use the identity $(a+b)^2$: $103^2 = (100+3)^2 = 100^2 + 2(100)(3) + 3^2 = 10000 + 600 + 9 = 10609$. This might be easier than direct multiplication $103 \times 103$. Similarly, $49 \times 51 = (50-1)(50+1) = 50^2 - 1^2 = 2500 - 1 = 2499$.Deriving and Proving Other Mathematical Results:
Algebraic identities serve as fundamental building blocks in more advanced mathematics. They are frequently used in proofs, derivations of formulas (e.g., the quadratic formula), and in various areas of calculus, linear algebra, and abstract algebra.
A solid understanding and memorization of the standard algebraic identities are essential for success in algebra and subsequent mathematical studies. They provide the tools needed to manipulate expressions fluently and solve a wide range of problems efficiently.
Standard Algebraic Identities and their Derivations
Algebraic identities are equality statements that hold true for all values of the variables involved. They are fundamental tools in algebra, simplifying calculations, aiding in factorisation, and forming the basis for more advanced mathematical concepts. These identities are derived directly from the basic axioms and properties of arithmetic operations (like the commutative, associative, and distributive properties).
Here, we will explore some of the most commonly used or "standard" algebraic identities and show how they are derived through algebraic manipulation. In these identities, $a, b,$ and $c$ represent any real numbers.
Basic Binomial Identities (Degree 2)
These identities involve the square of binomials and the product of a sum and difference.
Identity 1: Square of a Sum
The identity for the square of the sum of two terms is:
$(a + b)^2 = a^2 + 2ab + b^2$
[Square of a Sum Identity]
Derivation:
By the definition of squaring a quantity, $(a+b)^2$ means $(a+b)$ multiplied by itself:
$$ (a + b)^2 = (a + b) \times (a + b) $$Now, we use the distributive property to multiply the two binomials. We multiply each term in the first binomial $(a+b)$ by each term in the second binomial $(a+b)$.
$$ (a + b)(a + b) = a(a + b) + b(a + b) $$Apply the distributive property again to expand the terms:
$$ = (a \times a) + (a \times b) + (b \times a) + (b \times b) $$ $$ = a^2 + ab + ba + b^2 $$Using the commutative property of multiplication, we know that $ab$ is the same as $ba$. Substitute $ba$ with $ab$:
$$ = a^2 + ab + ab + b^2 $$Combine the like terms (the two $ab$ terms):
$$ = a^2 + (ab + ab) + b^2 = a^2 + 2ab + b^2 $$Thus, we have derived the identity: $(a + b)^2 = a^2 + 2ab + b^2$.
Example: Expand $(x+5)^2$. Using the identity with $a=x$ and $b=5$: $(x+5)^2 = x^2 + 2(x)(5) + 5^2 = x^2 + 10x + 25$.
Identity 2: Square of a Difference
The identity for the square of the difference of two terms is:
$(a - b)^2 = a^2 - 2ab + b^2$
[Square of a Difference Identity]
Derivation:
By the definition of squaring, $(a-b)^2 = (a-b) \times (a-b)$.
Using the distributive property:
$$ (a - b)(a - b) = a(a - b) - b(a - b) $$Apply the distributive property to expand the terms:
$$ = (a \times a) + (a \times -b) + (-b \times a) + (-b \times -b) $$ $$ = a^2 - ab - ba + b^2 $$Using the commutative property of multiplication, $ab = ba$. Substitute $ba$ with $ab$:
$$ = a^2 - ab - ab + b^2 $$Combine the like terms (the two $-ab$ terms):
$$ = a^2 + (-ab - ab) + b^2 = a^2 - 2ab + b^2 $$Thus, we have derived the identity: $(a - b)^2 = a^2 - 2ab + b^2$.
Example: Expand $(y-3)^2$. Using the identity with $a=y$ and $b=3$: $(y-3)^2 = y^2 - 2(y)(3) + 3^2 = y^2 - 6y + 9$.
Identity 3: Difference of Squares
The identity for the product of the sum and difference of two terms is:
$(a + b)(a - b) = a^2 - b^2$
[Difference of Squares Identity]
Derivation:
Using the distributive property to multiply the two binomials $(a+b)$ and $(a-b)$:
$$ (a + b)(a - b) = a(a - b) + b(a - b) $$Apply the distributive property to expand the terms:
$$ = (a \times a) + (a \times -b) + (b \times a) + (b \times -b) $$ $$ = a^2 - ab + ba - b^2 $$Using the commutative property of multiplication, $ab = ba$. Substitute $ba$ with $ab$:
$$ = a^2 - ab + ab - b^2 $$The terms $-ab$ and $+ab$ are additive inverses (they cancel each other out as their sum is $0$).
$$ = a^2 + (-ab + ab) - b^2 = a^2 + 0 - b^2 = a^2 - b^2 $$Thus, we have derived the identity: $(a + b)(a - b) = a^2 - b^2$.
Example: Expand $(x+4)(x-4)$. Using the identity with $a=x$ and $b=4$: $(x+4)(x-4) = x^2 - 4^2 = x^2 - 16$. This identity is extremely useful for factorisation and simplification.
Other Useful Identities
Identity 4: Expansion of $(x+a)(x+b)$
This identity describes the product of two binomials where one term is common ($x$) and the other terms are different constants ($a$ and $b$).
$(x + a)(x + b) = x^2 + (a + b)x + ab$
[Binomial Product Identity]
Derivation:
Using the distributive property to multiply the two binomials $(x+a)$ and $(x+b)$:
$$ (x + a)(x + b) = x(x + b) + a(x + b) $$Apply the distributive property again to expand the terms:
$$ = (x \times x) + (x \times b) + (a \times x) + (a \times b) $$ $$ = x^2 + xb + ax + ab $$Using the commutative property, $xb = bx$ and $ax = xa$. Write the terms with $x$ together:
$$ = x^2 + bx + ax + ab $$Factor out the common variable $x$ from the two middle terms $bx$ and $ax$. This is an application of the distributive property in reverse:
$$ = x^2 + (b + a)x + ab $$Using the commutative property of addition, $b+a = a+b$:
$$ = x^2 + (a + b)x + ab $$Thus, we have derived the identity: $(x + a)(x + b) = x^2 + (a + b)x + ab$.
Example: Expand $(m+2)(m+3)$. Using the identity with $x=m, a=2,$ and $b=3$: $(m+2)(m+3) = m^2 + (2+3)m + (2 \times 3) = m^2 + 5m + 6$.
Identity 5: Square of a Trinomial
This identity expands the square of a sum of three terms.
$(a + b + c)^2 = a^2 + b^2 + c^2 + 2ab + 2bc + 2ca$
[Square of a Trinomial Identity]
Derivation:
By definition, $(a+b+c)^2 = (a+b+c)(a+b+c)$.
Using the distributive property, multiply each term in the first trinomial by each term in the second trinomial:
$$ = a(a+b+c) + b(a+b+c) + c(a+b+c) $$Apply the distributive property to expand each part:
$$ = (a \times a) + (a \times b) + (a \times c) + (b \times a) + (b \times b) + (b \times c) + (c \times a) + (c \times b) + (c \times c) $$ $$ = a^2 + ab + ac + ba + b^2 + bc + ca + cb + c^2 $$Using the commutative property ($ab=ba, ac=ca, bc=cb$), rearrange and group like terms:
$$ = a^2 + b^2 + c^2 + (ab + ba) + (ac + ca) + (bc + cb) $$Combine the like terms:
$$ = a^2 + b^2 + c^2 + 2ab + 2ac + 2bc $$It is often written with the pairwise product terms in the order $ab, bc, ca$:
$$ = a^2 + b^2 + c^2 + 2ab + 2bc + 2ca $$Thus, we have derived the identity: $(a + b + c)^2 = a^2 + b^2 + c^2 + 2ab + 2bc + 2ca$.
Example: Expand $(x+y+z)^2$. Using the identity with $a=x, b=y,$ and $c=z$: $(x+y+z)^2 = x^2 + y^2 + z^2 + 2(x)(y) + 2(y)(z) + 2(z)(x) = x^2 + y^2 + z^2 + 2xy + 2yz + 2zx$.
Cubic Identities (Degree 3)
These identities involve the cube of binomials and the sum or difference of cubes.
Identity 6: Cube of a Sum
The identity for the cube of the sum of two terms is:
$(a + b)^3 = a^3 + 3a^2b + 3ab^2 + b^3$
[Cube of a Sum Identity]
An alternative form by factoring $3ab$ from the middle two terms is: $(a+b)^3 = a^3 + b^3 + 3ab(a+b)$.
Derivation:
By definition, $(a+b)^3 = (a+b)(a+b)^2$. We already derived the identity for $(a+b)^2$: $(a+b)^2 = a^2 + 2ab + b^2$.
Substitute the expanded form of $(a+b)^2$ into the expression for $(a+b)^3$:
$$ (a + b)^3 = (a + b)(a^2 + 2ab + b^2) $$Using the distributive property, multiply each term in the first binomial by each term in the trinomial:
$$ = a(a^2 + 2ab + b^2) + b(a^2 + 2ab + b^2) $$Apply the distributive property again to expand each part:
$$ = (a \times a^2) + (a \times 2ab) + (a \times b^2) + (b \times a^2) + (b \times 2ab) + (b \times b^2) $$ $$ = a^3 + 2a^2b + ab^2 + ba^2 + 2ab^2 + b^3 $$Using the commutative property ($ba^2 = a^2b$), rearrange and group like terms:
$$ = a^3 + (2a^2b + a^2b) + (ab^2 + 2ab^2) + b^3 $$Combine the like terms:
$$ = a^3 + 3a^2b + 3ab^2 + b^3 $$Thus, we have derived the identity: $(a + b)^3 = a^3 + 3a^2b + 3ab^2 + b^3$.
Example: Expand $(x+2)^3$. Using the identity with $a=x$ and $b=2$: $(x+2)^3 = x^3 + 3(x^2)(2) + 3(x)(2^2) + 2^3 = x^3 + 6x^2 + 3(x)(4) + 8 = x^3 + 6x^2 + 12x + 8$.
Identity 7: Cube of a Difference
The identity for the cube of the difference of two terms is:
$(a - b)^3 = a^3 - 3a^2b + 3ab^2 - b^3$
[Cube of a Difference Identity]
An alternative form by factoring $-3ab$ from the middle two terms is: $(a-b)^3 = a^3 - b^3 - 3ab(a-b)$.
Derivation: This identity can be derived in a similar way to the cube of a sum, by writing $(a-b)^3 = (a-b)(a-b)^2$ and expanding. Alternatively, we can substitute $-b$ for $b$ in the identity for $(a+b)^3$:
$$ (a + (-b))^3 = a^3 + 3a^2(-b) + 3a(-b)^2 + (-b)^3 $$Simplify the terms:
$$ = a^3 + 3a^2(-b) + 3a(b^2) + (-b^3) $$ $$ = a^3 - 3a^2b + 3ab^2 - b^3 $$Thus, we have derived the identity: $(a - b)^3 = a^3 - 3a^2b + 3ab^2 - b^3$.
Example: Expand $(y-1)^3$. Using the identity with $a=y$ and $b=1$: $(y-1)^3 = y^3 - 3(y^2)(1) + 3(y)(1^2) - 1^3 = y^3 - 3y^2 + 3y - 1$.
Identity 8: Sum of Cubes
This identity provides a way to factor a sum of two cubes into a binomial and a trinomial.
$a^3 + b^3 = (a + b)(a^2 - ab + b^2)$
[Sum of Cubes Identity]
Derivation: To prove this identity, it is easiest to expand the right-hand side (RHS) and show that it is equal to the left-hand side (LHS).
RHS $= (a + b)(a^2 - ab + b^2)$. Using the distributive property:
$$ = a(a^2 - ab + b^2) + b(a^2 - ab + b^2) $$Apply the distributive property again to expand each part:
$$ = (a \times a^2) + (a \times -ab) + (a \times b^2) + (b \times a^2) + (b \times -ab) + (b \times b^2) $$ $$ = a^3 - a^2b + ab^2 + ba^2 - ab^2 + b^3 $$Using the commutative property ($ba^2 = a^2b$), rearrange and group like terms:
$$ = a^3 + (- a^2b + a^2b) + (ab^2 - ab^2) + b^3 $$The terms $-a^2b$ and $+a^2b$ are additive inverses (they sum to $0$). The terms $ab^2$ and $-ab^2$ are also additive inverses (they sum to $0$).
$$ = a^3 + 0 + 0 + b^3 = a^3 + b^3 $$This is equal to the LHS. Thus, the identity $a^3 + b^3 = (a + b)(a^2 - ab + b^2)$ is proven.
Example: Factor $x^3 + 8$. We recognise $x^3$ as $x^3$ and $8$ as $2^3$. Using the identity with $a=x$ and $b=2$: $x^3 + 8 = x^3 + 2^3 = (x+2)(x^2 - x(2) + 2^2) = (x+2)(x^2 - 2x + 4)$.
Identity 9: Difference of Cubes
This identity provides a way to factor a difference of two cubes into a binomial and a trinomial.
$a^3 - b^3 = (a - b)(a^2 + ab + b^2)$
[Difference of Cubes Identity]
Derivation: Similar to the sum of cubes, we expand the right-hand side (RHS) and show it equals the left-hand side (LHS).
RHS $= (a - b)(a^2 + ab + b^2)$. Using the distributive property:
$$ = a(a^2 + ab + b^2) - b(a^2 + ab + b^2) $$Apply the distributive property to expand each part:
$$ = (a \times a^2) + (a \times ab) + (a \times b^2) - (b \times a^2) - (b \times ab) - (b \times b^2) $$ $$ = a^3 + a^2b + ab^2 - ba^2 - ab^2 - b^3 $$Using the commutative property ($ba^2 = a^2b$), rearrange and group like terms:
$$ = a^3 + (a^2b - ba^2) + (ab^2 - ab^2) - b^3 $$Substitute $ba^2 = a^2b$ and note the additive inverses:
$$ = a^3 + (a^2b - a^2b) + (ab^2 - ab^2) - b^3 $$ $$ = a^3 + 0 + 0 - b^3 = a^3 - b^3 $$This is equal to the LHS. Thus, the identity $a^3 - b^3 = (a - b)(a^2 + ab + b^2)$ is proven.
Example: Factor $y^3 - 1$. We recognise $y^3$ as $y^3$ and $1$ as $1^3$. Using the identity with $a=y$ and $b=1$: $y^3 - 1 = y^3 - 1^3 = (y-1)(y^2 + y(1) + 1^2) = (y-1)(y^2 + y + 1)$.
More Complex Identities (Example)
Identity 10: Sum of Cubes of Three Terms
This identity relates the sum of cubes of three terms to the product of their sum and a quadratic expression.
$a^3 + b^3 + c^3 - 3abc = (a + b + c)(a^2 + b^2 + c^2 - ab - bc - ca) $
[Sum of Cubes Identity (3 terms)]
Derivation: The derivation of this identity is more involved than the previous ones and requires careful expansion of the right-hand side. We can show that $(a + b + c)(a^2 + b^2 + c^2 - ab - bc - ca) = a(a^2 + b^2 + c^2 - ab - bc - ca) + b(a^2 + b^2 + c^2 - ab - bc - ca) + c(a^2 + b^2 + c^2 - ab - bc - ca)$. Expanding this fully and combining like terms leads to $a^3 + b^3 + c^3 - 3abc$. This is left as an exercise in careful algebraic expansion.
Special Case of Identity 10:
A very useful special case arises from Identity 10:
If $a + b + c = 0$, then $a^3 + b^3 + c^3 = 3abc$.
[Condition for Sum of Cubes]
Proof of the Special Case:
If $a + b + c = 0$, substitute $a+b+c=0$ into Identity 10:
$$ a^3 + b^3 + c^3 - 3abc = (0)(a^2 + b^2 + c^2 - ab - bc - ca) $$ $$ a^3 + b^3 + c^3 - 3abc = 0 $$Add $3abc$ to both sides of the equation:
$$ a^3 + b^3 + c^3 = 3abc $$This shows that if the sum of three terms is zero, the sum of their cubes is equal to three times their product.
Example: Without actual cubing, find the value of $(-12)^3 + (7)^3 + (5)^3$.
Let $a=-12, b=7, c=5$. Check the sum $a+b+c$: $-12 + 7 + 5 = -12 + 12 = 0$.
Since $a+b+c=0$, we can use the special case identity: $a^3 + b^3 + c^3 = 3abc$.
$$ (-12)^3 + (7)^3 + (5)^3 = 3 \times (-12) \times (7) \times (5) $$ $$ = 3 \times (-12) \times (35) $$ $$ = 3 \times (-420) = -1260 $$The value of $(-12)^3 + (7)^3 + (5)^3$ is $-1260$. Calculating the cubes and adding them would be much more tedious.
Memorizing and understanding the derivation of these standard algebraic identities is fundamental for efficiently manipulating algebraic expressions, factorising polynomials, and solving equations.
Using Identities for Simplification and Operations
Understanding and knowing algebraic identities is essential for efficiently manipulating algebraic expressions. Identities are not just statements of equality; they serve as powerful tools that allow us to transform expressions from one form to an equivalent, often simpler, form. They provide shortcuts for performing operations like multiplication and factorisation and can also be used to make numerical calculations easier.
Applications of Identities
Here are some key ways algebraic identities are used:
1. Expanding Expressions
Identities allow us to quickly expand expressions involving squared or cubed binomials or trinomials without going through the detailed distributive multiplication process. This saves time and reduces the chance of errors.
Example 1. Expand $(3x + 4y)^2$ using a suitable identity.
Answer:
The expression $(3x + 4y)^2$ is in the form of the square of a sum of two terms, $(a+b)^2$. We should use Identity 1:
$$ (a + b)^2 = a^2 + 2ab + b^2 $$In our expression, the first term $a$ is $3x$, and the second term $b$ is $4y$. Substitute these into the identity:
$$ (3x + 4y)^2 = (3x)^2 + 2(3x)(4y) + (4y)^2 $$Now, perform the calculations for each term:
- $(3x)^2 = 3^2 \times x^2 = 9x^2$
- $2(3x)(4y) = 2 \times 3 \times 4 \times x \times y = 24xy$
- $(4y)^2 = 4^2 \times y^2 = 16y^2$
Substitute these results back into the expanded form:
$$ = 9x^2 + 24xy + 16y^2 $$The expanded expression is $\textbf{9x\textsuperscript{2} + 24xy + 16y\textsuperscript{2}}$.
Example 2. Expand $(2p - 3)^3$ using a suitable identity.
Answer:
The expression $(2p - 3)^3$ is in the form of the cube of a difference of two terms, $(a-b)^3$. We should use Identity 7:
$$ (a - b)^3 = a^3 - 3a^2b + 3ab^2 - b^3 $$In our expression, the first term $a$ is $2p$, and the second term $b$ is $3$. Substitute these into the identity:
$$ (2p - 3)^3 = (2p)^3 - 3(2p)^2(3) + 3(2p)(3)^2 - (3)^3 $$Now, perform the calculations for each term:
- $(2p)^3 = 2^3 \times p^3 = 8p^3$
- $3(2p)^2(3) = 3 \times (2^2 p^2) \times 3 = 3 \times (4p^2) \times 3 = (3 \times 4 \times 3) p^2 = 36p^2$. The term is $-36p^2$.
- $3(2p)(3)^2 = 3 \times (2p) \times 9 = (3 \times 2 \times 9) p = 54p$. The term is $+54p$.
- $(3)^3 = 3 \times 3 \times 3 = 27$. The term is $-27$.
Substitute these results back into the expanded form:
$$ = 8p^3 - 36p^2 + 54p - 27 $$The expanded expression is $\textbf{8p\textsuperscript{3} - 36p\textsuperscript{2} + 54p - 27}$.
2. Factoring Expressions
Algebraic identities are extremely useful for factorising expressions. If an expression matches the expanded form of a standard identity, we can use the identity in reverse to write the expression in its factored form.
Example 3. Factorize $4x^2 - 25y^2$ using a suitable identity.
Answer:
The expression $4x^2 - 25y^2$ is a binomial (two terms) with a subtraction sign between them. We look for identities involving two terms. The Difference of Squares identity involves two terms:
$$ a^2 - b^2 = (a + b)(a - b) $$We check if the terms in our expression are perfect squares. We see that $4x^2$ is the square of $2x$, i.e., $4x^2 = (2x)^2$. Also, $25y^2$ is the square of $5y$, i.e., $25y^2 = (5y)^2$.
So, the expression is indeed in the form $a^2 - b^2$, where $a = 2x$ and $b = 5y$.
Apply the identity:
$$ 4x^2 - 25y^2 = (2x)^2 - (5y)^2 = (2x + 5y)(2x - 5y) $$The factored expression is $\textbf{(2x + 5y)(2x - 5y)}$.
Example 4. Factorize $m^3 + 27$ using a suitable identity.
Answer:
The expression $m^3 + 27$ is a binomial (two terms) with an addition sign. The terms are cubed. We look for identities involving sum of cubes. The Sum of Cubes identity is:
$$ a^3 + b^3 = (a + b)(a^2 - ab + b^2) $$We check if the terms in our expression are perfect cubes. $m^3$ is clearly the cube of $m$, i.e., $m^3 = (m)^3$. The number $27$ is the cube of $3$, i.e., $27 = 3^3$.
So, the expression is in the form $a^3 + b^3$, where $a = m$ and $b = 3$.
Apply the identity:
$$ m^3 + 27 = m^3 + 3^3 = (m + 3)(m^2 - m(3) + 3^2) $$Simplify the terms in the second factor:
$$ = (m + 3)(m^2 - 3m + 9) $$The factored expression is $\textbf{(m + 3)(m\textsuperscript{2} - 3m + 9)}$.
3. Evaluating Numerical Expressions
Algebraic identities can often simplify calculations involving specific numbers, especially large numbers or decimals, by allowing us to rewrite the calculation in a form that is easier to compute mentally or with fewer steps.
Example 5. Evaluate $101^2$ using an identity.
Answer:
We want to calculate $101^2$. We can express $101$ as a sum or difference involving a round number, like $100$. So, $101 = 100 + 1$.
The expression becomes $(100 + 1)^2$, which is in the form $(a+b)^2$. Use Identity 1: $(a + b)^2 = a^2 + 2ab + b^2$.
Here, let $a = 100$ and $b = 1$.
$$ 101^2 = (100 + 1)^2 = (100)^2 + 2(100)(1) + (1)^2 $$Perform the calculations:
$$ (100)^2 = 100 \times 100 = 10000 $$ $$ 2(100)(1) = 200 $$ $$ (1)^2 = 1 $$Substitute these values back and add:
$$ = 10000 + 200 + 1 = 10201 $$Answer: $101^2 = \textbf{10201}$.
Alternative approach (using difference):
We could also write $101^2 = (102-1)^2$. Using $(a-b)^2 = a^2 - 2ab + b^2$ with $a=102, b=1$: $(102)^2 - 2(102)(1) + 1^2 = 10404 - 204 + 1 = 10200 + 1 = 10201$. This also works, but using a round number like 100 usually simplifies calculations the most.
Example 6. Evaluate $98 \times 102$ using an identity.
Answer:
We want to calculate the product $98 \times 102$. Notice that both numbers are close to $100$. We can express $98$ as $100 - 2$ and $102$ as $100 + 2$.
The product becomes $(100 - 2)(100 + 2)$. This is in the form of the product of a difference and a sum, $(a - b)(a + b)$. Use Identity 3:
$$ (a - b)(a + b) = a^2 - b^2 $$Here, let $a = 100$ and $b = 2$.
$$ 98 \times 102 = (100 - 2)(100 + 2) = (100)^2 - (2)^2 $$Perform the calculations:
$$ (100)^2 = 10000 $$ $$ (2)^2 = 4 $$Substitute these values and subtract:
$$ = 10000 - 4 = 9996 $$Answer: $98 \times 102 = \textbf{9996}$. This is much faster than performing the full multiplication.
Proficiency in recognising the forms of algebraic expressions that match standard identities and applying the identities (both for expansion and factorisation) is a vital skill that significantly enhances efficiency in algebraic manipulation and problem-solving.