返回题库

AIME 2011 II · 第 11 题

AIME 2011 II — Problem 11

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Let MnM_n be the n×nn \times n matrix with entries as follows: for 1in1 \le i \le n, mi,i=10m_{i,i} = 10; for 1in11 \le i \le n - 1, mi+1,i=mi,i+1=3m_{i+1,i} = m_{i,i+1} = 3; all other entries in MnM_n are zero. Let DnD_n be the determinant of matrix MnM_n. Then n=118Dn+1\sum_{n=1}^{\infty} \frac{1}{8D_n+1} can be represented as pq\frac{p}{q}, where pp and qq are relatively prime positive integers. Find p+qp + q.

Note: The determinant of the 1×11 \times 1 matrix [a][a] is aa, and the determinant of the 2×22 \times 2 matrix [abcd]=adbc\left[ {\begin{array}{cc} a & b \\ c & d \\ \end{array} } \right] = ad - bc; for n2n \ge 2, the determinant of an n×nn \times n matrix with first row or first column a1a_1 a2a_2 a3a_3 \dots ana_n is equal to a1C1a2C2+a3C3+(1)n+1anCna_1C_1 - a_2C_2 + a_3C_3 - \dots + (-1)^{n+1}a_nC_n, where CiC_i is the determinant of the (n1)×(n1)(n - 1) \times (n - 1) matrix formed by eliminating the row and column containing aia_i.

解析

Solution

D1=10=10,D2=103310=(10)(10)(3)(3)=91,D3=103031030310.D_{1}=\begin{vmatrix} 10 \end{vmatrix} = 10, \quad D_{2}=\begin{vmatrix} 10 & 3 \\ 3 & 10 \\ \end{vmatrix} =(10)(10) - (3)(3) = 91, \quad D_{3}=\begin{vmatrix} 10 & 3 & 0 \\ 3 & 10 & 3 \\ 0 & 3 & 10 \\ \end{vmatrix}. Using the expansionary/recursive definition of determinants (also stated in the problem):

D3=103031030310=10103310333010+031003=10D29D1=820D_{3}=\left| {\begin{array}{ccc} 10 & 3 & 0 \\ 3 & 10 & 3 \\ 0 & 3 & 10 \\ \end{array} } \right|=10\left| {\begin{array}{cc} 10 & 3 \\ 3 & 10 \\ \end{array} } \right| - 3\left| {\begin{array}{cc} 3 & 3 \\ 0 & 10 \\ \end{array} } \right| + 0\left| {\begin{array}{cc} 3 & 10 \\ 0 & 3 \\ \end{array} } \right| = 10D_{2} - 9D_{1} = 820

This pattern repeats because the first element in the first row of MnM_{n} is always 10, the second element is always 3, and the rest are always 0. The ten element directly expands to 10Dn110D_{n-1}. The three element expands to 3 times the determinant of the the matrix formed from omitting the second column and first row from the original matrix. Call this matrix XnX_{n}. XnX_{n} has a first column entirely of zeros except for the first element, which is a three. A property of matrices is that the determinant can be expanded over the rows instead of the columns (still using the recursive definition as given in the problem), and the determinant found will still be the same. Thus, expanding over this first column yields 3Dn2+0(other things)=3Dn23D_{n-2} + 0(\text{other things})=3D_{n-2}. Thus, the 3det(Xn)3 \det(X_{n}) expression turns into 9Dn29D_{n-2}. Thus, the equation Dn=10Dn19Dn2D_{n}=10D_{n-1}-9D_{n-2} holds for all n > 2.

This equation can be rewritten as Dn=10(Dn1Dn2)+Dn2D_{n}=10(D_{n-1}-D_{n-2}) + D_{n-2}. This version of the equation involves the difference of successive terms of a recursive sequence. Calculating D0D_{0} backwards from the recursive formula and D4D_{4} from the formula yields D0=1,D4=7381D_{0}=1, D_{4}=7381. Examining the differences between successive terms, a pattern emerges. D0=1=90D_{0}=1=9^{0}, D1D0=101=9=91D_{1}-D_{0}=10-1=9=9^{1}, D2D1=9110=81=92D_{2}-D_{1}=91-10=81=9^{2}, D3D2=82091=729=93D_{3}-D_{2}=820-91=729=9^{3}, D4D3=7381820=6561=94D_{4}-D_{3}=7381-820=6561=9^{4}. Thus, Dn=D0+91+92+...+9n=i=0n9i=(1)(9n+11)91=9n+118D_{n}=D_{0} + 9^{1}+9^{2}+ . . . +9^{n}=\sum_{i=0}^{n}9^{i}=\frac{(1)(9^{n+1}-1)}{9-1}=\frac{9^{n+1}-1}{8}.

Thus, the desired sum is n=1189n+118+1=n=119n+11+1=n=119n+1\sum_{n=1}^{\infty}\frac{1}{8\frac{9^{n+1}-1}{8}+1}=\sum_{n=1}^{\infty}\frac{1}{9^{n+1}-1+1} = \sum_{n=1}^{\infty}\frac{1}{9^{n+1}}

This is an infinite geometric series with first term 181\frac{1}{81} and common ratio 19\frac{1}{9}. Thus, the sum is 181119=18189=9(81)(8)=1(9)(8)=172\frac{\frac{1}{81}}{1-\frac{1}{9}}=\frac{\frac{1}{81}}{\frac{8}{9}}=\frac{9}{(81)(8)}=\frac{1}{(9)(8)}=\frac{1}{72}.

Thus, p+q=1+72=073p + q = 1 + 72 = \boxed{073}.

Solution 2 (Engineer's Induction - not rigorous)

AIME diagram

Solution 3 (Uses first half of Solution 1)

From Solution 1, Dn=10Dn19Dn2D_n = 10D_{n-1} - 9D_{n-2}. From Solution 1, we also know D2=91D_2 = 91. We can manually compute D1=10D_1 = 10. Iterating backwards, D0=1D_0 = 1.

The characteristic polynomial of this recurrence is

x210x+9,x^2 - 10x + 9, which has roots 11 and 99. Therefore, the explicit formula for DnD_n is:

Dn=α1+9nα2.D_n = \alpha_1 + 9^n \alpha_2. We can solve for α1\alpha_1 and α2\alpha_2 by setting n=0n=0 and n=1n=1 respectively. This gives the following equations:

α1+α2=1,\alpha_1 + \alpha_2 = 1, α1+9α2=10.\alpha_1 + 9\alpha_2 = 10. Solving these equations, we find

α1=18,α2=98.\alpha_1 = -\frac{1}{8}, \quad \alpha_2 = \frac{9}{8}. Substituting these back into the explicit formula, we find

Dn=9n+118.D_n = \frac{9^{n+1} - 1}{8}. Notice that

18Dn+1+1=9(n+1).\frac{1}{8D_{n+1} + 1} = 9^{-(n+1)}. The summation asks us to find the sum of a geometric series with ratio 19\frac{1}{9} and first term 181\frac{1}{81}. The sum of this series is

181119=18189=172.\frac{\frac{1}{81}}{1 - \frac{1}{9}} = \frac{\frac{1}{81}}{\frac{8}{9}} = \frac{1}{72}. Thus, the answer is 73\boxed{73}

Faster Alternate

Optionally, one can notice that the recursive relation is a first order non-homogenous relation in the form an=ran1+ca_n = ra_{n-1} + c. So, to solve this (and all other first orders), we first need to find a point LL for which

L=rL+cL = rL+c in which we have

L=9L+1L = 9L+1 L=18L = -\frac{1}{8} Such LL is called the Equilibrium Point\textbf{Equilibrium Point} of a recurrence relation. Its property satisfies:

DnL=r(Dn1L)D_n - L = r(D_{n-1}-L) Dn+18=9(Dn1+18D_n + \frac{1}{8} = 9(D_{n-1}+\frac{1}{8} Let Vn=Dn+18V_n = D_n + \frac{1}{8}. The result is a geometric sequence with first term 818\frac{81}{8}. The explicit rule for bnb_n is just bn=8189n1b_n = \frac{81}{8} \cdot 9^{n-1}. Conversion back to DnD_n can be done quite easily.

Dn+18=9n+18D_n + \frac{1}{8} = \frac{9^{n+1}}{8} Dn=9n+118D_n = \frac{9^{n+1} - 1}{8} .

The explicit rule has been reached and one can simply continue as follows.

~Pinotation