How to declare another variable for a polynomial [closed]

asked 2015-12-19 12:19:25 +0200

Minhminh gravatar image

n=var('n") def T(n): a=1 b=x if n==0: return a if n==1: return b else: for i in [2..n]: b=2xb-a a=(a+b)/(2*x) return b Could you help me to compute T(i) at x=1 or anything ?Mean that I want to declare x is a variable of T(i), but I can't. Thank you so much

edit retag flag offensive reopen merge delete

Closed for the following reason duplicate question by vdelecroix
close date 2015-12-19 20:00:07.078913