Inductive proof for matrix multiplication problem

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
3 replies · 2K views
jaejoon89
Messages
187
Reaction score
0

Homework Statement



Compute

[1 1]^n
[ 1]

This is what my book has. I am assuming the blank means 0 (please tell me if this is not the case).

Homework Equations



None really (matrix multiplication)

The Attempt at a Solution



I did n = 1, 2, 3, 4 and found a patten. It looks like:

[1 1]^n
[ 1]
=
[1 n]
[ 1]

But how do I show that? Obviously showing it for a couple cases doesn't mean it's actually true. Inductively, I can show the n = 2 case is true. but I don't really know how to show the n+1 case is true other than write

[1 1]^n+1
[ 1]
=
[1 n+1]
[ 1]

but that seems a little unsatisfactory or like I'm skipping steps or something. How do you do it?
 
Physics news on Phys.org
Assume that the statement is true for an exponent of n. Then use this to show that the (n + 1)st power of your matrix produces the right value.

The blank means 0, I'm pretty sure.
 
Right. But how do you do that?

Letting n be the natural numbers and assuming the following statement is true

[1 1]^n
[ 1]
=
[1 n]
[ 1]

Thus,

[1 1]^n+1
[ 1]
=
[1 n+1]
[ 1]I don't really know how to show it beyond that - is there some abstract way to write out the intermediate steps? As it is, it seems somewhat unsatisfactory.
 
I'm putting the 0 in the lower left corner since it looks silly to leave it out.

[1 1]^(n+1)
[0 1]

=
[1 1]^n [1 1]
[0 1] [0 1]

= ??
This is where you use what you have assumed.