All questions
Question 1
Generate a Pythagorean triple using the identity (x2+y2)2=(x2−y2)2+(2xy)2 with x=4 and y=1. Which triple (a,b,c) is correct (order of a,b may be swapped)?
- (8,15,17) (correct answer)
- (7,16,17)
- (15,17,8)
- (8,15,16)
Explanation: This question tests your understanding of polynomial identities—equations that are true for all values of the variables—and how to prove them algebraically or use them for applications like generating Pythagorean triples. The Pythagorean triple identity (x² + y²)² = (x² - y²)² + (2xy)² is remarkably powerful: it generates right triangles! If you pick any two integers x and y (with x > y), this identity gives you three expressions—x² + y², x² - y², and 2xy—that form a Pythagorean triple. With x = 4 and y = 1: First calculate a = x² - y² = 16 - 1 = 15, b = 2xy = 2(4)(1) = 8, and c = x² + y² = 16 + 1 = 17. Let's verify this is a Pythagorean triple: a² + b² = 15² + 8² = 225 + 64 = 289 = 17² = c². Perfect! The triple is (15, 8, 17), or equivalently (8, 15, 17) since order of a and b can be swapped. Choice A correctly identifies (8, 15, 17) as the triple. Choice B gives (7, 16, 17), but 7² + 16² = 49 + 256 = 305 ≠ 289 = 17². Choice D gives (8, 15, 16), using 16 instead of 17 for the hypotenuse. For generating Pythagorean triples with (x² + y²)² = (x² - y²)² + (2xy)²: (1) Pick two positive integers x and y with x greater than y, (2) Calculate the three quantities: a = x² - y², b = 2xy, c = x² + y², (3) Verify: a² + b² should equal c². Try x = 5, y = 2 next: you'll get the (21, 20, 29) triple!
Question 2
Recognize x4−16 as a difference of squares twice and factor completely using identities. Which answer is correct?
- (x2−4)(x2+4)
- (x−2)(x+2)(x2+4) (correct answer)
- (x−4)(x+4)(x2+4)
- (x−2)2(x+2)2
Explanation: This question tests your understanding of polynomial identities—equations that are true for all values of the variables—and how to prove them algebraically or use them for applications like generating Pythagorean triples. A polynomial identity is different from a regular equation: it's true for ALL possible values of the variables, not just specific solutions. To factor x⁴ - 16 completely, we need to recognize it as a difference of squares and apply the pattern repeatedly. First, x⁴ - 16 = (x²)² - 4² = (x² - 4)(x² + 4) using a² - b² = (a - b)(a + b). But we're not done! The factor x² - 4 is also a difference of squares: x² - 4 = x² - 2² = (x - 2)(x + 2). Therefore, x⁴ - 16 = (x - 2)(x + 2)(x² + 4). Note that x² + 4 cannot be factored further using real numbers. Choice B correctly shows the complete factorization (x - 2)(x + 2)(x² + 4). Choice A stops after one application of difference of squares, leaving x² - 4 unfactored. Choice C incorrectly factors as if we had x⁴ - 256 = x⁴ - 4⁴. Choice D suggests (x - 2)²(x + 2)², which would expand to x⁴ - 8x² + 16, not x⁴ - 16. For complete factoring: (1) Look for common factors first, (2) Check if it's a special pattern (difference of squares, sum/difference of cubes), (3) Apply the pattern, (4) Check if any factors can be factored further, (5) Repeat until all factors are prime or irreducible!
Question 3
Use the identity (x2+y2)2=(x2−y2)2+(2xy)2 to generate a Pythagorean triple when x=3 and y=2. (A Pythagorean triple is (a,b,c) with a2+b2=c2.)
- (5,12,13) (correct answer)
- (1,12,13)
- (5,13,12)
- (7,12,13)
Explanation: This question tests your understanding of polynomial identities—equations that are true for all values of the variables—and how to prove them algebraically or use them for applications like generating Pythagorean triples. The Pythagorean triple identity (x2+y2)2=(x2−y2)2+(2xy)2 is remarkably powerful: it generates right triangles! If you pick any two integers x and y (with x > y), this identity gives you three expressions—x2+y2, x2−y2, and 2xy—that form a Pythagorean triple. For example, x = 3 and y = 2 gives: (9+4)2=(9−4)2+(12)2, which simplifies to 169=25+144, or 132=52+122, giving the (5, 12, 13) triple! With x = 3 and y = 2: a = x2−y2 = 9 - 4 = 5, b = 2xy = 2(3)(2) = 12, and c = x2+y2 = 9 + 4 = 13. Let's verify: 52+122=25+144=169=132. Choice A correctly gives (5, 12, 13), which forms a valid Pythagorean triple. The other choices either miscalculate one of the values or arrange them incorrectly—remember that c must be the hypotenuse (largest value). For generating Pythagorean triples with (x2+y2)2=(x2−y2)2+(2xy)2: (1) Pick two positive integers x and y with x greater than y, (2) Calculate the three quantities: a = x2−y2, b = 2xy, c = x2+y2, (3) Verify: a2+b2 should equal c2. This identity guarantees you'll always get a valid triple! Question 4
A polynomial identity states that x4+4y4=(x2+2xy+2y2)(x2−2xy+2y2). Which of the following best explains why this identity is useful for factoring expressions of the form a4+4b4?
- It reduces the degree of the polynomial from fourth degree to second degree in both variables
- It transforms a sum that cannot be factored using standard techniques into a product of two quadratic expressions (correct answer)
- It converts an expression with irrational coefficients into one with only integer coefficients
- It eliminates the need to use complex numbers when factoring over the real number system
Explanation: When you encounter expressions like a4+4b4, you're facing a sum of fourth powers that doesn't fit standard factoring patterns like difference of squares or perfect square trinomials. This polynomial identity provides a powerful tool for breaking down such expressions.
The identity x4+4y4=(x2+2xy+2y2)(x2−2xy+2y2) works by cleverly transforming what appears to be an unfactorable sum into a product of two quadratic expressions. You can verify this by expanding the right side using FOIL: the middle terms ±2xy cancel out, leaving you with x4+4y4. This transformation is valuable because it converts a fourth-degree expression that resists standard factoring techniques into manageable quadratic factors.
Choice A is incorrect because while the individual factors are quadratic, we haven't reduced the overall degree—we still have a fourth-degree expression, just in factored form. Choice C misses the point entirely, as this identity doesn't address coefficient types but rather factorization structure. Choice D is wrong because this identity actually works within the real number system and doesn't eliminate complex numbers—in fact, the quadratic factors might still require complex solutions depending on the specific values.
The correct answer is B because this identity's main utility lies in making the seemingly impossible possible: factoring a sum of fourth powers by revealing its hidden structure as a product of quadratics.
Remember: when you see a4+4b4, think of this identity as your secret weapon for factoring expressions that don't yield to standard techniques. Question 5
The identity a3−b3=(a−b)(a2+ab+b2) can be used to factor certain expressions. For which value of k does the expression 8x3−k factor as (2x−3)(4x2+6x+9)?
- k=9
- k=18
- k=27 (correct answer)
- k=54
Explanation: If 8x3−k=(2x−3)(4x2+6x+9), then we can identify this with the difference of cubes pattern a3−b3=(a−b)(a2+ab+b2). Here, a=2x (since 8x3=(2x)3) and a−b=2x−3, so b=3. We need to verify: a2+ab+b2=(2x)2+(2x)(3)+32=4x2+6x+9 ✓. Therefore, k=b3=33=27. Choice A gives k=32. Choice B gives k=2×32. Choice D gives k=2×33. Question 6
Consider the polynomial identity x4+x2y2+y4=(x2+y2)2−x2y2. If this identity is applied to simplify 16t4+4t2s2+s4, what is the resulting expression in terms of perfect squares?
- (4t2+s2)2−4t2s2
- (4t2+s2)2−2t2s2
- (4t2+s2)2−(2ts)2 (correct answer)
- (16t2+s2)2−(2ts)2
Explanation: First, we need to identify the pattern. We have 16t4+4t2s2+s4 and want to write it as (At2+Bs2)2−Ct2s2 for some constants. Since 16t4=(4t2)2 and s4=(s2)2, we have A=4 and B=1. So (4t2+s2)2=16t4+8t2s2+s4. To get 16t4+4t2s2+s4, we need (4t2+s2)2−4t2s2=16t4+8t2s2+s4−4t2s2=16t4+4t2s2+s4. Since 4t2s2=(2ts)2, the answer is (4t2+s2)2−(2ts)2. Choices A and B don't express the subtracted term as a perfect square. Choice D incorrectly uses 16t2 instead of 4t2. Question 7
A student claims that the identity (x+y)3=x3+3x2y+3xy2+y3 can be used to prove that x3+y3=(x+y)(x2−xy+y2). Which step in the verification process reveals whether this approach is valid?
- Confirming that both expressions have the same degree and leading coefficient structure
- Substituting the expansion of (x+y)3 and isolating terms containing x3+y3
- Verifying that the coefficients in the binomial expansion match the sum of cubes formula
- Expanding (x+y)(x2−xy+y2) and checking if it equals x3+y3 (correct answer)
Explanation: When verifying algebraic identities, you need to test whether two expressions are actually equal by expanding and comparing them directly. The student's proposed approach tries to connect the binomial expansion (x+y)3 to the sum of cubes factorization, but this creates an unnecessarily complex verification path.
The most straightforward way to verify the identity x3+y3=(x+y)(x2−xy+y2) is to expand the right side and see if it equals the left side. When you multiply (x+y)(x2−xy+y2), you get:
x(x2−xy+y2)+y(x2−xy+y2)=x3−x2y+xy2+x2y−xy2+y3
The middle terms cancel: −x2y+x2y=0 and xy2−xy2=0, leaving exactly x3+y3. This confirms the identity is correct.
Option A focuses on structural comparison rather than actual verification. Option B suggests using the binomial expansion as an intermediate step, which overcomplicates the process and doesn't directly verify the sum of cubes formula. Option C tries to match coefficients between different expansions, but the binomial theorem and sum of cubes factorization involve different algebraic structures that don't directly correspond.
Option D correctly identifies that direct expansion and comparison is the clearest verification method.
Remember: when verifying algebraic identities, the most reliable approach is usually to expand one side completely and check if it matches the other side exactly. Question 8
Verify that the identity a3+b3=(a+b)(a2−ab+b2) is true for all real numbers a and b by expanding the right-hand side.
- (a+b)(a2−ab+b2)=a3−b3
- (a+b)(a2−ab+b2)=a3+b3 (correct answer)
- (a+b)(a2−ab+b2)=a3+a2b+ab2+b3
- (a+b)(a2−ab+b2)=a3−2a2b+2ab2+b3
Explanation: This question tests your understanding of polynomial identities—equations that are true for all values of the variables—and how to prove them algebraically or use them for applications like generating Pythagorean triples. A polynomial identity is different from a regular equation: it's true for ALL possible values of the variables, not just specific solutions. For example, (a+b)2=a2+2ab+b2 works whether a=5 and b=3, or a=−2 and b=7, or any other values. To prove an identity, we show the two sides are algebraically equivalent by expanding, factoring, or manipulating until they match. To verify, expand the right-hand side: (a+b)(a2−ab+b2)=a(a2−ab+b2)+b(a2−ab+b2)=a3−a2b+ab2+a2b−ab2+b3=a3+b3, with the middle terms canceling out nicely. Choice A correctly proves the identity by showing the expansion simplifies to a3+b3, matching the left side. A distractor like Choice B might forget to cancel terms and leave extra factors, but careful distribution prevents that. To prove a polynomial identity: (1) Pick the more complicated side (usually), (2) Expand using FOIL, distribution, or combining like terms, (3) Simplify systematically, (4) Show it equals the other side. Alternatively, expand BOTH sides independently and show they give the same result. Either way, the goal is demonstrating the two expressions are algebraically equivalent for all variable values. Testing with specific numbers can give confidence but doesn't prove—you need algebraic demonstration! Question 9
The polynomial identity x4−y4=(x2+y2)(x2−y2) can be further factored. Which of the following represents the complete factorization of 81a4−16b4?
- (9a2+4b2)(3a+2b)(3a−2b) (correct answer)
- (9a2+4b2)(9a2−4b2)
- (81a2+16b2)(a+b)(a−b)
- (3a+2b)2(3a−2b)2
Explanation: Starting with 81a4−16b4=(9a2)2−(4b2)2, we can apply the difference of squares identity twice. First: (9a2)2−(4b2)2=(9a2+4b2)(9a2−4b2). The factor (9a2+4b2) cannot be factored further over the reals, but (9a2−4b2)=(3a)2−(2b)2=(3a+2b)(3a−2b). Choice B stops at the first factorization. Choice C incorrectly factors the first step. Choice D incorrectly represents the final form as squared factors. Question 10
Prove the identity (a−b)3=a3−3a2b+3ab2−b3 by expanding the left-hand side. Which expression is the correct expansion of (a−b)3?
- a3−3a2b−3ab2−b3
- a3−3a2b+3ab2−b3 (correct answer)
- a3+3a2b+3ab2+b3
- a3−a2b+ab2−b3
Explanation: This question tests your understanding of polynomial identities—equations that are true for all values of the variables—and how to prove them algebraically or use them for applications like generating Pythagorean triples. A polynomial identity is different from a regular equation: it's true for ALL possible values of the variables, not just specific solutions. For example, (a+b)2=a2+2ab+b2 works whether a = 5 and b = 3, or a = -2 and b = 7, or any other values. To prove an identity, we show the two sides are algebraically equivalent by expanding, factoring, or manipulating until they match. Expand (a−b)3=(a−b)(a−b)(a−b)= first (a−b)2=a2−2ab+b2, then times (a−b)=a(a2−2ab+b2)−b(a2−2ab+b2)=a3−2a2b+ab2−a2b+2ab2−b3=a3−3a2b+3ab2−b3. Choice B correctly expands to a3−3a2b+3ab2−b3. A distractor like Choice A might flip all signs incorrectly, but track the negative from −b carefully. To prove a polynomial identity: (1) Pick the more complicated side (usually), (2) Expand using FOIL, distribution, or combining like terms, (3) Simplify systematically, (4) Show it equals the other side. Alternatively, expand BOTH sides independently and show they give the same result. Either way, the goal is demonstrating the two expressions are algebraically equivalent for all variable values. Testing with specific numbers can give confidence but doesn't prove—you need algebraic demonstration! Question 11
Demonstrate that the polynomial identity (x2+y2)2=(x2−y2)2+(2xy)2 holds for all real x,y by expanding both sides and simplifying.
- LHS: (x2+y2)2=x4+2x2y2+y4 and RHS: (x2−y2)2+(2xy)2=(x4−2x2y2+y4)+4x2y2=x4+2x2y2+y4 so they are equal for all x,y. (correct answer)
- LHS: (x2+y2)2=x4+2x2y2+y4 and RHS: (x2−y2)2+(2xy)2=(x4+2x2y2+y4)+4xy=x4+2x2y2+y4+4xy so they are equal.
- LHS: (x2+y2)2=x4+y4 and RHS: (x2−y2)2+(2xy)2=x4+y4, so the identity is true.
- LHS: (x2+y2)2=x4+2x2y2+y4 and RHS: (x2−y2)2+(2xy)2=(x4−2x2y2+y4)+2x2y2=x4+y4 so they match.
Explanation: This question tests your understanding of polynomial identities—equations that are true for all values of the variables—and how to prove them algebraically or use them for applications like generating Pythagorean triples. A polynomial identity is different from a regular equation: it's true for ALL possible values of the variables, not just specific solutions. For example, (a + b)² = a² + 2ab + b² works whether a = 5 and b = 3, or a = -2 and b = 7, or any other values. To prove an identity, we show the two sides are algebraically equivalent by expanding, factoring, or manipulating until they match. Let's expand the left side: (x² + y²)² = x⁴ + 2x²y² + y⁴. Now the right side: (x² - y²)² + (2xy)² = (x⁴ - 2x²y² + y⁴) + 4x²y² = x⁴ - 2x²y² + y⁴ + 4x²y² = x⁴ + 2x²y² + y⁴. Choice B correctly shows both expansions and demonstrates they're equal, proving the identity holds for all x, y. Choice A makes an error in expanding (2xy)² as 2x²y² instead of 4x²y², while C incorrectly expands the squared binomials, and D adds an extra 4xy term that shouldn't be there. To prove a polynomial identity: (1) Pick the more complicated side (usually), (2) Expand using FOIL, distribution, or combining like terms, (3) Simplify systematically, (4) Show it equals the other side. Alternatively, expand BOTH sides independently and show they give the same result. Either way, the goal is demonstrating the two expressions are algebraically equivalent for all variable values.
Question 12
Apply the sum of cubes identity to factor completely: x3+8.
- (x+8)(x2−8x+64)
- (x+2)(x2−2x+4) (correct answer)
- (x+2)(x2+2x+4)
- (x−2)(x2+2x+4)
Explanation: This question tests your understanding of polynomial identities—equations that are true for all values of the variables—and how to prove them algebraically or use them for applications like generating Pythagorean triples. A polynomial identity is different from a regular equation: it's true for ALL possible values of the variables, not just specific solutions. For example, (a+b)2=a2+2ab+b2 works whether a=5 and b=3, or a=−2 and b=7, or any other values. To prove an identity, we show the two sides are algebraically equivalent by expanding, factoring, or manipulating until they match. For x3+8=x3+23, apply the sum of cubes: a3+b3=(a+b)(a2−ab+b2), so (x+2)(x2−2x+4), and it's completely factored since x2−2x+4 has no real roots. Choice C correctly applies the identity to factor as (x+2)(x2−2x+4). A distractor like Choice A might use +2x instead of −2x, but remember the middle term in sum of cubes is negative. To prove a polynomial identity: (1) Pick the more complicated side (usually), (2) Expand using FOIL, distribution, or combining like terms, (3) Simplify systematically, (4) Show it equals the other side. Alternatively, expand BOTH sides independently and show they give the same result. Either way, the goal is demonstrating the two expressions are algebraically equivalent for all variable values. Testing with specific numbers can give confidence but doesn't prove—you need algebraic demonstration! Question 13
Verify that the polynomial identity a3+b3=(a+b)(a2−ab+b2) is true for all real numbers a and b by expanding the right-hand side.
- (a+b)(a2−ab+b2)=a3−ab2+a2b−b3=a3−b3
- (a+b)(a2−ab+b2)=a3−a2b+ab2+b3=a3+b3−ab(a−b)
- (a+b)(a2−ab+b2)=a3+3a2b+3ab2+b3
- (a+b)(a2−ab+b2)=a3−a2b+ab2+a2b−ab2+b3=a3+b3 (correct answer)
Explanation: This question tests your understanding of polynomial identities—equations that are true for all values of the variables—and how to prove them algebraically or use them for applications like generating Pythagorean triples. A polynomial identity is different from a regular equation: it's true for ALL possible values of the variables, not just specific solutions. For example, (a+b)2=a2+2ab+b2 works whether a=5 and b=3, or a=−2 and b=7, or any other values. To prove an identity, we show the two sides are algebraically equivalent by expanding, factoring, or manipulating until they match. Expanding the right side: (a+b)(a2−ab+b2)=a⋅a2+a⋅(−ab)+a⋅b2+b⋅a2+b⋅(−ab)+b⋅b2=a3−a2b+ab2+a2b−ab2+b3, where −a2b+a2b and ab2−ab2 cancel, leaving a3+b3. Choice A correctly proves the identity by showing the expansion and cancellation to match a3+b3. To prove a polynomial identity: (1) Pick the more complicated side (usually), (2) Expand using FOIL, distribution, or combining like terms, (3) Simplify systematically, (4) Show it equals the other side. Question 14
Demonstrate that the polynomial identity (x2+y2)2=(x2−y2)2+(2xy)2 holds for all real x,y by expanding both sides and simplifying.
- LHS: (x2+y2)2=x4+2x2y2+y4 and RHS: (x2−y2)2+(2xy)2=(x4−2x2y2+y4)+2x2y2=x4+y4 so they match.
- LHS: (x2+y2)2=x4+2x2y2+y4 and RHS: (x2−y2)2+(2xy)2=(x4−2x2y2+y4)+4x2y2=x4+2x2y2+y4 so they are equal for all x,y. (correct answer)
- LHS: (x2+y2)2=x4+y4 and RHS: (x2−y2)2+(2xy)2=x4+y4, so the identity is true.
- LHS: (x2+y2)2=x4+2x2y2+y4 and RHS: (x2−y2)2+(2xy)2=(x4+2x2y2+y4)+4xy=x4+2x2y2+y4+4xy so they are equal.
Explanation: This question tests your understanding of polynomial identities—equations that are true for all values of the variables—and how to prove them algebraically or use them for applications like generating Pythagorean triples. A polynomial identity is different from a regular equation: it's true for ALL possible values of the variables, not just specific solutions. For example, (a + b)² = a² + 2ab + b² works whether a = 5 and b = 3, or a = -2 and b = 7, or any other values. To prove an identity, we show the two sides are algebraically equivalent by expanding, factoring, or manipulating until they match. Let's expand the left side: (x² + y²)² = x⁴ + 2x²y² + y⁴. Now the right side: (x² - y²)² + (2xy)² = (x⁴ - 2x²y² + y⁴) + 4x²y² = x⁴ - 2x²y² + y⁴ + 4x²y² = x⁴ + 2x²y² + y⁴. Choice B correctly shows both expansions and demonstrates they're equal, proving the identity holds for all x, y. Choice A makes an error in expanding (2xy)² as 2x²y² instead of 4x²y², while C incorrectly expands the squared binomials, and D adds an extra 4xy term that shouldn't be there. To prove a polynomial identity: (1) Pick the more complicated side (usually), (2) Expand using FOIL, distribution, or combining like terms, (3) Simplify systematically, (4) Show it equals the other side. Alternatively, expand BOTH sides independently and show they give the same result. Either way, the goal is demonstrating the two expressions are algebraically equivalent for all variable values.
Question 15
Use the identity (x2+y2)2=(x2−y2)2+(2xy)2 to generate a Pythagorean triple when x=3 and y=2. (A Pythagorean triple is (a,b,c) with a2+b2=c2.)
- (5,12,13) (correct answer)
- (12,5,13)
- (13,12,5)
- (6,5,13)
Explanation: This question tests your understanding of polynomial identities—equations that are true for all values of the variables—and how to prove them algebraically or use them for applications like generating Pythagorean triples. The Pythagorean triple identity (x² + y²)² = (x² - y²)² + (2xy)² is remarkably powerful: it generates right triangles! If you pick any two integers x and y (with x > y), this identity gives you three expressions—x² + y², x² - y², and 2xy—that form a Pythagorean triple. For x=3, y=2: a = 9 - 4 = 5, b = 2·3·2 = 12, c = 9 + 4 = 13, and 5² + 12² = 25 + 144 = 169 = 13². Choice A correctly generates the triple (5,12,13) using the identity. Other choices rearrange or alter the values incorrectly. For generating Pythagorean triples with (x² + y²)² = (x² - y²)² + (2xy)²: (1) Pick two positive integers x and y with x greater than y, (2) Calculate the three quantities: a = x² - y², b = 2xy, c = x² + y², (3) Verify: a² + b² should equal c².
Question 16
Recognize and factor completely using polynomial identities: x4−16.
- (x2−4)(x2+4)
- (x−4)(x3+4)
- (x−2)(x+2)(x2+4) (correct answer)
- (x−2)2(x+2)2
Explanation: This question tests your understanding of polynomial identities—equations that are true for all values of the variables—and how to prove them algebraically or use them for applications like generating Pythagorean triples. A polynomial identity is different from a regular equation: it's true for ALL possible values of the variables, not just specific solutions. For example, (a+b)2=a2+2ab+b2 works whether a = 5 and b = 3, or a = -2 and b = 7, or any other values. To prove an identity, we show the two sides are algebraically equivalent by expanding, factoring, or manipulating until they match. For x4−16=(x2)2−42=(x2−4)(x2+4)=(x−2)(x+2)(x2+4), using difference of squares twice for complete factorization. Choice C correctly factors completely as (x−2)(x+2)(x2+4). A distractor like Choice A stops at partial factorization, but complete means breaking down all factorable parts. To prove a polynomial identity: (1) Pick the more complicated side (usually), (2) Expand using FOIL, distribution, or combining like terms, (3) Simplify systematically, (4) Show it equals the other side. Alternatively, expand BOTH sides independently and show they give the same result. Either way, the goal is demonstrating the two expressions are algebraically equivalent for all variable values. Testing with specific numbers can give confidence but doesn't prove—you need algebraic demonstration! Question 17
Prove the identity (a−b)3=a3−3a2b+3ab2−b3 by expanding (a−b)3, then apply it to expand (x−2)3.
- (x−2)3=x3−6x2+12x−8 (correct answer)
- (x−2)3=x3−6x2+4x−8
- (x−2)3=x3−4x2+12x−8
- (x−2)3=x3−6x2−12x−8
Explanation: This question tests your understanding of polynomial identities—equations that are true for all values of the variables—and how to prove them algebraically or use them for applications like generating Pythagorean triples. A polynomial identity is different from a regular equation: it's true for ALL possible values of the variables, not just specific solutions. The binomial cube identity (a−b)3=a3−3a2b+3ab2−b3 follows a specific pattern with coefficients 1, -3, 3, -1. Let's apply it to (x−2)3 with a = x and b = 2: (x−2)3=x3−3(x2)(2)+3(x)(22)−23=x3−6x2+3x(4)−8=x3−6x2+12x−8. Choice A correctly shows this expansion with all terms properly calculated. Choice B has 4x instead of 12x (forgetting to multiply 3 × 4), Choice C has -4x^2 instead of -6x^2 (using 22 instead of 3 × 2), and Choice D incorrectly has -12x instead of +12x (wrong sign pattern). To expand binomial cubes: (1) Remember the coefficient pattern: 1, 3, 3, 1 for both (a+b)3 and (a−b)3, (2) For (a−b)3, signs alternate: +, -, +, -, (3) Powers decrease for a (from 3 to 0) and increase for b (from 0 to 3), (4) Calculate each term carefully—it's easy to make arithmetic errors with the coefficients! Question 18
Demonstrate that the identity a2−b2=(a+b)(a−b) holds for all real a,b by expanding the right-hand side. Which expansion is correct?
- (a+b)(a−b)=a2−b2 (correct answer)
- (a+b)(a−b)=a2+2ab−b2
- (a+b)(a−b)=a2−ab−b2
- (a+b)(a−b)=a2+b2
Explanation: This question tests your understanding of polynomial identities—equations that are true for all values of the variables—and how to prove them algebraically or use them for applications like generating Pythagorean triples. A polynomial identity is different from a regular equation: it's true for ALL possible values of the variables, not just specific solutions. The difference of squares identity a² - b² = (a + b)(a - b) is one of the most useful factoring patterns in algebra. Let's expand the right side to verify: (a + b)(a - b) = a(a - b) + b(a - b) = a² - ab + ba - b² = a² - ab + ab - b² = a² - b². The cross terms -ab and +ab cancel perfectly! Choice A correctly shows that (a + b)(a - b) = a² - b². Choice B incorrectly includes a 2ab term, confusing this with the perfect square expansion. Choice C has -ab without the canceling +ab term. Choice D claims the result is a² + b², which would be the sum of squares, not the difference! To prove a polynomial identity: (1) Pick the more complicated side (usually), (2) Expand using FOIL, distribution, or combining like terms, (3) Simplify systematically, (4) Show it equals the other side. The difference of squares pattern is special because the middle terms always cancel, leaving just a² - b²!
Question 19
Apply the sum of cubes identity to factor the polynomial completely: x3+27.
- (x+3)(x2+3x+9)
- (x+3)(x2−3x+9) (correct answer)
- (x−3)(x2−3x+9)
- (x+27)(x2−27x+729)
Explanation: This question tests your understanding of polynomial identities—equations that are true for all values of the variables—and how to prove them algebraically or use them for applications like generating Pythagorean triples. The sum of cubes identity a3+b3=(a+b)(a2−ab+b2) is remarkably powerful for factoring! For x3+27=x3+33, we identify a = x and b = 3, so it factors as (x+3)(x2−x⋅3+32)=(x+3)(x2−3x+9). Remember, this is different from the cube of a sum, (a+b)3=(a+b)(a2+2ab+b2), which would have +3x in the quadratic. Choice B correctly applies the sum of cubes identity with the proper signs and terms for complete factoring. Choice A uses the incorrect +3x, which is a common distractor from confusing it with binomial expansion. To factor using identities: (1) Recognize the pattern like sum or difference of cubes, (2) Identify a and b, (3) Plug into the formula carefully, especially the signs, (4) Verify by expanding back if needed. Question 20
Use the identity (x2+y2)2=(x2−y2)2+(2xy)2 to generate a Pythagorean triple when x=3 and y=2. Which triple (a,b,c) results, where a2+b2=c2?
- (5,12,13) (correct answer)
- (7,24,25)
- (1,12,13)
- (5,13,12)
Explanation: This question tests your understanding of polynomial identities—equations that are true for all values of the variables—and how to prove them algebraically or use them for applications like generating Pythagorean triples. The Pythagorean triple identity (x² + y²)² = (x² - y²)² + (2xy)² is remarkably powerful: it generates right triangles! If you pick any two integers x and y (with x > y), this identity gives you three expressions—x² + y², x² - y², and 2xy—that form a Pythagorean triple. For example, x = 3 and y = 2 gives: (9 + 4)² = (9 - 4)² + (12)², which simplifies to 169 = 25 + 144, or 13² = 5² + 12², giving the (5, 12, 13) triple! Plugging in x=3 and y=2: a = x² - y² = 9 - 4 = 5, b = 2xy = 12, c = x² + y² = 13, and indeed 5² + 12² = 25 + 144 = 169 = 13². Choice A correctly generates the triple (5,12,13) through proper application of the identity. A distractor like Choice B might miscalculate x² - y² as 1 instead of 5, but double-check your subtractions. For generating Pythagorean triples with (x² + y²)² = (x² - y²)² + (2xy)²: (1) Pick two positive integers x and y with x greater than y, (2) Calculate the three quantities: a = x² - y², b = 2xy, c = x² + y², (3) Verify: a² + b² should equal c². Try x = 4, y = 3: a = 16 - 9 = 7, b = 2(4)(3) = 24, c = 16 + 9 = 25. Check: 7² + 24² = 49 + 576 = 625 = 25². Yes! The (7, 24, 25) triple emerges from the identity!