Difference between revisions of "2007 AMC 10A Problems/Problem 20"

m
m (Adding ANOTHER solution)
Line 82: Line 82:
  
 
~MRENTHUSIASM (Reconstruction)
 
~MRENTHUSIASM (Reconstruction)
 +
 +
== Solution 7 (Easier to understand version of Solution 1) ==
 +
The algebra is as follows:
 +
<cmath>a+\frac{1}{a}=4</cmath>
 +
<cmath>\left(a+\frac{1}{a}\right)^2=4^2</cmath>
 +
<cmath>a^2+2a\frac{1}{a}+\left(\frac{1}{a}\right)^2=16</cmath>
 +
<cmath>a^2+\frac{1}{a^2}=16-2=14</cmath>
 +
<cmath>\left(a^2+\frac{1}{a^2}\right)^2=14^2</cmath>
 +
<cmath>\left(a^2\right)^2+2a^2\frac{1}{a^2}+\left(\frac{1}{a^2}\right)^2=196</cmath>
 +
<cmath>a^4+\frac{1}{a^4}=196-2=\boxed{194}</cmath>
  
 
== See also ==
 
== See also ==

Revision as of 12:24, 6 July 2021

Problem

Suppose that the number $a$ satisfies the equation $4 = a + a^{ - 1}$. What is the value of $a^{4} + a^{ - 4}$?

$\text{(A)}\ 164 \qquad \text{(B)}\ 172 \qquad \text{(C)}\ 192 \qquad \text{(D)}\ 194 \qquad \text{(E)}\ 212$

Solution 1 (Increases the Powers)

Squaring both sides of $a+a^{-1}=4$ gives $a^2+a^{-2}+2=16,$ from which $a^2+a^{-2}=14.$

Squaring both sides of $a^2+a^{-2}=14$ gives $a^4+a^{-4}+2=196,$ from which $a^4+a^{-4}=\boxed{\text{(D)}\ 194}.$

~Rbhale12 (Fundamental Logic)

~MRENTHUSIASM (Reconstruction)

Solution 2 (Decreases the Powers)

Note that for all real numbers $k,$ we have $a^{2k} + a^{-2k} + 2 = \left(a^{k} + a^{-k}\right)^2,$ from which \[a^{2k} + a^{-2k} = \left(a^{k} + a^{-k}\right)^2-2.\] We apply this result twice to get the answer: \begin{align*} a^4 + a^{-4} &= \left(a^2 + a^{-2}\right)^2 - 2 \\ &= \left[\left(a + a^{-1}\right)^2 - 2\right]^2 - 2 \\ &= \boxed{\text{(D)}\ 194}. \end{align*} ~Azjps (Fundamental Logic)

~MRENTHUSIASM (Reconstruction)

Solution 3 (Binomial Theorem)

Squaring both sides of $a+a^{-1}=4$ gives $a^2+a^{-2}+2=16,$ from which $a^2+a^{-2}=14.$

We raise both sides of $a+a^{-1}=4$ to the fourth power, then apply the Binomial Theorem: \begin{align*} \binom40a^4a^0+\binom41a^3a^{-1}+\binom42a^2a^{-2}+\binom43a^1a^{-3}+\binom44a^0a^{-4}&=256 \\ a^4+4a^2+6+4a^{-2}+a^{-4}&=256 \\ \left(a^4+a^{-4}\right)+4\left(a^2+a^{-2}\right)&=250 \\ \left(a^4+a^{-4}\right)+4(14)&=250 \\ a^4+a^{-4}&=\boxed{\text{(D)}\ 194}. \end{align*} ~MRENTHUSIASM

Solution 4 (Solves for a)

We multiply both sides of $4=a+a^{-1}$ by $a,$ then rearrange: \[a^2-4a+1=0.\]

We apply the Quadratic Formula to get $a=2\pm\sqrt3.$

Note that the roots are reciprocals of each other. Therefore, choosing either value for $a$ gives the same value for $a^4+a^{-4}:$ \begin{align*} a^4+a^{-4}&=\left(2+\sqrt{3}\right)^4 + \frac{1}{\left(2+\sqrt{3}\right)^4} \\ &=\left(2+\sqrt{3}\right)^4+\left(2-\sqrt{3}\right)^4 &&&(*) \\ &=\boxed{\text{(D)}\ 194}. \end{align*} Remarks in $\boldsymbol{(*)}$

  1. To find the fourth power of a sum/difference, we can first square that sum/difference, then square the result.
  2. When we expand the fourth powers and combine like terms, the irrational terms will cancel.

~Azjps (Fundamental Logic)

~MRENTHUSIASM (Reconstruction)

Solution 5 (Newton's Sums)

From the first sentence of Solution 4, we conclude that $a$ and $a^{-1}$ are the roots of $x^2-4x+1=0.$ Let \begin{align*} P_1&=a+a^{-1}, \\ P_2&=a^2+a^{-2}, \\ P_3&=a^3+a^{-3}, \\ P_4&=a^4+a^{-4}. \end{align*} By Newton's Sums, we have \begin{alignat*}{12} &1\cdot P_1-4\cdot 1&&=0 &&\qquad\implies\qquad P_1&&=4, \\ &1\cdot P_2-4\cdot P_1+1\cdot2 &&=0 &&\qquad\implies\qquad P_2&&=14, \\ &1\cdot P_3-4\cdot P_2+1\cdot P_1&&=0 &&\qquad\implies\qquad P_3&&=52, \\ &1\cdot P_4-4\cdot P_3+1\cdot P_2&&=0 &&\qquad\implies\qquad P_4&&=\boxed{\text{(D)}\ 194}. \end{alignat*} ~Albert1993 (Fundamental Logic)

~MRENTHUSIASM (Reconstruction)

Solution 6 (Answer Choices)

Note that \[a^{4} + a^{-4} = \left(a^{2} + a^{-2}\right)^{2} - 2.\] We guess that $a^{2} + a^{-2}$ is an integer, so the answer must be $2$ less than a perfect square. The only possibility is $\boxed{\text{(D)}\ 194}.$

~Thanosaops (Fundamental Logic)

~MRENTHUSIASM (Reconstruction)

Solution 7 (Easier to understand version of Solution 1)

The algebra is as follows: \[a+\frac{1}{a}=4\] \[\left(a+\frac{1}{a}\right)^2=4^2\] \[a^2+2a\frac{1}{a}+\left(\frac{1}{a}\right)^2=16\] \[a^2+\frac{1}{a^2}=16-2=14\] \[\left(a^2+\frac{1}{a^2}\right)^2=14^2\] \[\left(a^2\right)^2+2a^2\frac{1}{a^2}+\left(\frac{1}{a^2}\right)^2=196\] \[a^4+\frac{1}{a^4}=196-2=\boxed{194}\]

See also

2007 AMC 10A (ProblemsAnswer KeyResources)
Preceded by
Problem 19
Followed by
Problem 21
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
All AMC 10 Problems and Solutions

The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions. AMC logo.png