WikiPrépaLivrets

On considère trois suites réelles (un)n∈N(u_n)_{n \in \mathbb{N}}, (vn)n∈N(v_n)_{n \in \mathbb{N}} et (wn)n∈N(w_n)_{n \in \mathbb{N}} définies par leurs premiers termes u0,v0,w0u_0, v_0, w_0 et les relations de récurrence suivantes pour tout n∈Nn \in \mathbb{N} :

{un+1=un+vnvn+1=un+wnwn+1=vn+wn\left\{ \begin{aligned} u_{n+1} &= u_n + v_n
v_{n+1} &= u_n + w_n
w_{n+1} &= v_n + w_n \end{aligned} \right.

Déterminer l'expression explicite de un,vnu_n, v_n et wnw_n en fonction de nn et des conditions initiales.

1.

Introduire le vecteur colonne Xn=(unvnwn)X_n = \begin{pmatrix} u_n
v_n
w_n \end{pmatrix}
et traduire le système sous la forme Xn+1=AXnX_{n+1} = AX_n.

2.

Étudier les propriétés de la matrice AA (symétrie, spectre) pour justifier sa diagonalisabilité.

3.

Calculer AnA^n en utilisant une matrice de passage, puis en déduire les composantes de XnX_n.

Idées clés

•

Traduction matricielle d'un système dynamique linéaire.

•

Diagonalisation d'une matrice symétrique réelle.

•

Calcul de la puissance nn-ième via la formule An=PDnP−1A^n = P D^n P^{-1}.

1. Mise sous forme matricielle.

Soit Xn=(unvnwn)X_n = \begin{pmatrix} u_n
v_n
w_n \end{pmatrix}
. Le système se réécrit Xn+1=AXnX_{n+1} = A X_n avec :

A=(110101011)A = \begin{pmatrix} 1 & 1 & 0
1 & 0 & 1
0 & 1 & 1 \end{pmatrix}

Par une récurrence immédiate, on établit que pour tout n∈Nn \in \mathbb{N} :

Xn=AnX0\boxed{X_n = A^n X_0}

2. Réduction de la matrice AA.

La matrice AA est symétrique réelle, elle est donc diagonalisable dans une base orthonormée (théorème spectral). Calculons son polynôme caractéristique χA(x)=det⁡(xI3−A)\chi_A(x) = \det(x I_3 - A) :

χA(x)=∣x−1−10−1x−10−1x−1∣\chi_A(x) = \begin{vmatrix} x-1 & -1 & 0
-1 & x & -1
0 & -1 & x-1 \end{vmatrix}

En développant par rapport à la première ligne :

χA(x)=(x−1)[x(x−1)−1]−(−1)[−(x−1)−0]\chi_A(x) = (x-1) [x(x-1) - 1] - (-1) [-(x-1) - 0]
χA(x)=(x−1)(x2−x−1)−(x−1)=(x−1)(x2−x−2)\chi_A(x) = (x-1)(x^2 - x - 1) - (x-1) = (x-1)(x^2 - x - 2)

Les racines de x2−x−2x^2 - x - 2 sont 22 et −1-1. Le spectre de AA est donc :

Sp(A)={−1,1,2}\boxed{\text{Sp}(A) = \{ -1, 1, 2 \}}

Les valeurs propres sont simples, ce qui confirme la diagonalisabilité.

3. Recherche des sous-espaces propres.

  • Pour λ=1\lambda = 1 : On résout (A−I)V=0(A-I)V=0.
    (0101−11010)(xyz)=(000)  ⟺  {y=0x+z=0\begin{pmatrix} 0 & 1 & 0
    1 & -1 & 1
    0 & 1 & 0 \end{pmatrix} \begin{pmatrix} x
    y
    z \end{pmatrix} = \begin{pmatrix} 0
    0
    0 \end{pmatrix} \iff \left\{ \begin{aligned} y &= 0
    x+z &= 0 \end{aligned} \right.
    On choisit E1=Vect(V1)E_1 = \text{Vect}(V_1) avec V1=(10−1)V_1 = \begin{pmatrix} 1
    0
    -1 \end{pmatrix}
    .

  • Pour λ=2\lambda = 2 : On résout (A−2I)V=0(A-2I)V=0.
    (−1101−2101−1)(xyz)=(000)  ⟺  {x=yy=z\begin{pmatrix} -1 & 1 & 0
    1 & -2 & 1
    0 & 1 & -1 \end{pmatrix} \begin{pmatrix} x
    y
    z \end{pmatrix} = \begin{pmatrix} 0
    0
    0 \end{pmatrix} \iff \left\{ \begin{aligned} x &= y
    y &= z \end{aligned} \right.
    On choisit E2=Vect(V2)E_2 = \text{Vect}(V_2) avec V2=(111)V_2 = \begin{pmatrix} 1
    1
    1 \end{pmatrix}
    .

  • Pour λ=−1\lambda = -1 : On résout (A+I)V=0(A+I)V=0.
    (210111012)(xyz)=(000)  ⟺  {y=−2xz=x\begin{pmatrix} 2 & 1 & 0
    1 & 1 & 1
    0 & 1 & 2 \end{pmatrix} \begin{pmatrix} x
    y
    z \end{pmatrix} = \begin{pmatrix} 0
    0
    0 \end{pmatrix} \iff \left\{ \begin{aligned} y &= -2x
    z &= x \end{aligned} \right.
    On choisit E−1=Vect(V3)E_{-1} = \text{Vect}(V_3) avec V3=(1−21)V_3 = \begin{pmatrix} 1
    -2
    1 \end{pmatrix}
    .

4. Calcul de AnA^n.

Soit P=(11101−2−111)P = \begin{pmatrix} 1 & 1 & 1
0 & 1 & -2
-1 & 1 & 1 \end{pmatrix}
la matrice de passage. On a A=PDP−1A = P D P^{-1} avec D=diag(1,2,−1)D = \text{diag}(1, 2, -1). Un calcul de déterminant donne det⁡(P)=6\det(P) = 6. L'inversion (par pivot de Gauss ou comatrice) donne :

P−1=16(30−32221−21)P^{-1} = \frac{1}{6} \begin{pmatrix} 3 & 0 & -3
2 & 2 & 2
1 & -2 & 1 \end{pmatrix}

Le vecteur XnX_n est donné par Xn=PDnP−1X0X_n = P D^n P^{-1} X_0. Posons P−1X0=(αβγ)P^{-1} X_0 = \begin{pmatrix} \alpha
\beta
\gamma \end{pmatrix}
. On a :

α=u0−w02,β=u0+v0+w03,γ=u0−2v0+w06\alpha = \frac{u_0 - w_0}{2},   \beta = \frac{u_0 + v_0 + w_0}{3},   \gamma = \frac{u_0 - 2v_0 + w_0}{6}

On en déduit Xn=P(α⋅1nβ⋅2nγ⋅(−1)n)X_n = P \begin{pmatrix} \alpha \cdot 1^n
\beta \cdot 2^n
\gamma \cdot (-1)^n \end{pmatrix}
, soit :

{un=α+β2n+γ(−1)nvn=β2n−2γ(−1)nwn=−α+β2n+γ(−1)n\left\{ \begin{aligned} u_n &= \alpha + \beta 2^n + \gamma (-1)^n
v_n &= \beta 2^n - 2\gamma (-1)^n
w_n &= -\alpha + \beta 2^n + \gamma (-1)^n \end{aligned} \right.

5. Conclusion.

En remplaçant par les valeurs initiales :

un=u0−w02+u0+v0+w032n+u0−2v0+w06(−1)n\boxed{u_n = \frac{u_0 - w_0}{2} + \frac{u_0 + v_0 + w_0}{3} 2^n + \frac{u_0 - 2v_0 + w_0}{6} (-1)^n}
vn=u0+v0+w032n−u0−2v0+w03(−1)n\boxed{v_n = \frac{u_0 + v_0 + w_0}{3} 2^n - \frac{u_0 - 2v_0 + w_0}{3} (-1)^n}
wn=w0−u02+u0+v0+w032n+u0−2v0+w06(−1)n\boxed{w_n = \frac{w_0 - u_0}{2} + \frac{u_0 + v_0 + w_0}{3} 2^n + \frac{u_0 - 2v_0 + w_0}{6} (-1)^n}

Une erreur fréquente est d'oublier de vérifier la diagonalisabilité avant d'utiliser la formule PDnP−1P D^n P^{-1}. Ici, la symétrie de AA offre une justification immédiate et élégante.