Linear Algebra? (Or Differential Equation?)

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
4 replies · 2K views
mudkip123
Messages
2
Reaction score
0
Find un, vn, and tn in terms of n for the following system:
{
un+1 = -un + 2vn + tn
vn+1 = vn - tn
tn+1 = 2tn

For u0, v0, t0 given



This isn't homework, it's on a study guide for my midterm.
 
Physics news on Phys.org
mudkip123 said:
Find un, vn, and tn in terms of n for the following system:
{
un+1 = -un + 2vn + tn
vn+1 = vn - tn
tn+1 = 2tn

For u0, v0, t0 given



This isn't homework, it's on a study guide for my midterm.

First solve the third one [itex]t_{n+1} = 2 t_n,[/itex] to get [itex]t_n = t_0 2^{n-1}.[/itex] Now look at the second one [itex]v_{n+1} = v_n -t_n.[/itex] It gives [itex]v_n = v_0 -\sum_{j=0}^{n-1} t_j,[/itex] which is computable. Now you have [itex]u_{n+1} = -u_n + f(n)[/itex] with a known function f(n), so you can solve it easily: [tex]u_1 = f(0)-u_0, \; u_2 = f(1) - u_1 = f(1)-f(0) + u_0, \; u_3 = f(2) - u_2 = f(2)-f(1)+f(0) - u_0,[/tex] etc.

RGV
 
This isn't in my linear algebra textbook so I don't know how to do this...