Difficulty: Medium
Correct Answer: -4
Explanation:
Introduction / Context:
This question involves evaluating a high degree polynomial expression in x, given that x satisfies a quadratic equation. Rather than computing powers directly, you can use the quadratic relation to reduce higher powers of x to linear combinations of 1 and x. This technique is common in algebra and helps simplify expressions efficiently, especially in aptitude problems where direct computation is impractical.
Given Data / Assumptions:
Concept / Approach:
From x^2 - 4x + 1 = 0 we have x^2 = 4x - 1. This relation allows us to express any higher power of x in terms of lower powers by repeated substitution. One systematic approach is to successively compute x^3, x^4 and so on, always reducing powers of x^2 using x^2 = 4x - 1, until patterns emerge. Another more advanced method uses polynomial division to find the remainder of the large polynomial when divided by x^2 - 4x + 1, because that remainder must equal the value of the expression at any root of the quadratic.
Step-by-Step Solution:
Step 1: Use the relation x^2 = 4x - 1.
Step 2: Compute x^3 = x · x^2 = x(4x - 1) = 4x^2 - x. Replace x^2 with 4x - 1 to get x^3 = 4(4x - 1) - x = 16x - 4 - x = 15x - 4.
Step 3: Continue similarly to express higher powers, or use the polynomial remainder method. When the polynomial P(x) = x^9 + x^7 - 194x^5 - 194x^3 is divided by x^2 - 4x + 1, the remainder is a constant because the divisor is quadratic.
Step 4: This remainder can be found by algebraic reduction or symbolic methods and is equal to -4.
Step 5: Since x is a root of x^2 - 4x + 1 = 0, we have P(x) equal to the remainder for that divisor, which is -4.
Verification / Alternative check:
To verify, you can find the numerical roots of the quadratic equation. Solving x^2 - 4x + 1 = 0 gives x = 2 ± √3. Substitute x = 2 + √3 into the expression x^9 + x^7 - 194x^5 - 194x^3, using a calculator or careful algebra, and you will find that the result is -4. The same will hold for x = 2 - √3. Because both roots yield the same value, and the polynomial relation ensures equality for all such roots, this confirms that the expression always evaluates to -4 when the quadratic condition is satisfied.
Why Other Options Are Wrong:
Common Pitfalls:
Students sometimes try to expand x^9 and other high powers directly, which is not practical and leads to mistakes. Another pitfall is misusing the relation x^2 = 4x - 1 by substituting incorrectly or not simplifying fully at each step. Employing the idea of polynomial remainders or working with the roots directly is far more efficient and reliable. Always remember that if x satisfies a polynomial equation, any other polynomial in x can be reduced modulo that equation.
Final Answer:
The value of x^9 + x^7 - 194x^5 - 194x^3 is -4.
Discussion & Comments