Problem 55205. Nuemann Polynomials
Return the coefficients of nth (n>=0) Nuemann polynomial, (a sequence in 1/t) as polynomials in alpha.
The expected output is a cell array, with each element as a polynomial in increasing powers of alpha. For example -
%Note - The coefficient of 1/t^0 will always be 0
n=1;
O1(alpha)(t)=2*(1+alpha)/t^2
Output = {[0], [2 2]}
%explanation - Coefficient of 1/t^1 1/t^2 in which each element is polynomial in alpha
n=3;
O3(alpha)(t)=2*(1+alpha)*(3+alpha)/t^2 + 8*(1+alpha)*(2+alpha)*(3+alpha)/t^4
Output = {[0], [2 8 6], [0], [8 48 88 48]}
%explanation - Coefficient of 1/t^1 1/t^2 1/t^3 1/t^4
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers4
Suggested Problems
-
1315 Solvers
-
105 Solvers
-
Vectorize the digits of an Integer
325 Solvers
-
952 Solvers
-
Implement a bubble sort technique and output the number of swaps required
321 Solvers
More from this Author31
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!