Matrix - Show Using Induction: B^n = 2^(n-1) for (3 -1) (1 1)

  • Thread starter Thread starter gtfitzpatrick
  • Start date Start date
  • Tags Tags
    Induction Matrix
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 2K views
gtfitzpatrick
Messages
372
Reaction score
0

Homework Statement



B =
(3 -1)
(1 1)

show using induction B^n = 2^(n-1)
(2+n -n)
(n 2-n)

The Attempt at a Solution


First i prove the base case so let n=1 B=2^0
(3 -1)
(1 1) so it holds true.

then assume it holds true for n=k prove it true for n=k+1
so i sub in and get
b^k+1 = 2^k
(3+k -k-1)
(k+1 1-k)
but I'm not sure where to go from here, thanks for looking! (sorry i don't know how to put in a matrix)
 
Physics news on Phys.org
gtfitzpatrick said:
then assume it holds true for n=k prove it true for n=k+1
so i sub in and get
b^k+1 = 2^k
(3+k -k-1)
(k+1 1-k)
but I'm not sure where to go from here, thanks for looking! (sorry i don't know how to put in a matrix)

You seem to be assuming that it is true for n=k+1; but you are supposed to prove that, not assume it.

Instead assume that it is true for n=k:

[tex]\implies B^k=2^{k-1} \begin{pmatrix}2+k & -k \\ k & 2-k\end{pmatrix}[/tex]

Then use the fact that [itex]B^{k+1}=B^kB[/itex] to compute [itex]B^{k+1}[/itex] and show that you get

[tex]2^{(k+1)-1} \begin{pmatrix}2+(k+1) & -(k+1) \\ (k+1) & 2-(k+1)\end{pmatrix}[/tex]
 
yes, when i started to tidy up i got

[tex] 2^{(k-1)} \begin{pmatrix}2k+6) & -2k-2 \\ 2k+2 & -2k+2\end{pmatrix}[/tex]

which further tidies to your equation. this is proved because there is now k+1 where there was k's so it holds true for k+1,k+2...and all values of K...or n.