Numerical Methods - 3.6 Linear Difference Equations
DLMF | Formula | Constraints | Maple | Mathematica | Symbolic Maple |
Symbolic Mathematica |
Numeric Maple |
Numeric Mathematica |
---|---|---|---|---|---|---|---|---|
3.6.E3 | a_{n}w_{n+1}-b_{n}w_{n}+c_{n}w_{n-1} = 0 |
|
a[n]*w[n + 1]- b[n]*w[n]+ c[n]*w[n - 1] = 0 |
Subscript[a, n]*Subscript[w, n + 1]- Subscript[b, n]*Subscript[w, n]+ Subscript[c, n]*Subscript[w, n - 1] == 0 |
Skipped - no semantic math | Skipped - no semantic math | - | - |
3.6.E5 | \sum_{n=0}^{\infty}\lambda_{n}w_{n} = 1 |
|
sum(lambda[n]*w[n], n = 0..infinity) = 1 |
Sum[Subscript[\[Lambda], n]*Subscript[w, n], {n, 0, Infinity}, GenerateConditions->None] == 1 |
Skipped - no semantic math | Skipped - no semantic math | - | - |
3.6.E10 | p_{n+1}w_{n} = p_{n}w_{n+1}+e_{n} |
|
p[n + 1]*w[n] = p[n]*w[n + 1]+ exp(1)[n] |
Subscript[p, n + 1]*Subscript[w, n] == Subscript[p, n]*Subscript[w, n + 1]+ Subscript[E, n] |
Skipped - no semantic math | Skipped - no semantic math | - | - |
3.6.E11 | w_{n+1}-2nw_{n}+w_{n-1} = 0 |
|
w[n + 1]- 2*n*w[n]+ w[n - 1] = 0 |
Subscript[w, n + 1]- 2*n*Subscript[w, n]+ Subscript[w, n - 1] == 0 |
Skipped - no semantic math | Skipped - no semantic math | - | - |
3.6.E14 | w_{n+1}-2nw_{n}+w_{n-1} = -(2/\cpi)(1-(-1)^{n}) |
|
w[n + 1]- 2*n*w[n]+ w[n - 1] = -(2/Pi)*(1 -(- 1)^(n))
|
Subscript[w, n + 1]- 2*n*Subscript[w, n]+ Subscript[w, n - 1] == -(2/Pi)*(1 -(- 1)^(n))
|
Failure | Failure | Failed [300 / 300] |
Failed [300 / 300]
|
3.6.E17 | a_{n}w_{n+1}-b_{n}w_{n} = d_{n} |
|
a[n]*w[n + 1]- b[n]*w[n] = d[n] |
Subscript[a, n]*Subscript[w, n + 1]- Subscript[b, n]*Subscript[w, n] == Subscript[d, n] |
Skipped - no semantic math | Skipped - no semantic math | - | - |