Post Reply 
[VA] Short & Sweet Math Challenge #24: "2019 Spring Special 5-tier"
03-25-2019, 09:53 PM
Post: #13
RE: [VA] Short & Sweet Math Challenge #24: "2019 Spring Special 5-tier"
Calculate cin(x) taylor coefficients with XCas. Only need adjust vars for more terms.

vars := [a3, a5, a7, a9, a11, a13, a15];

n := 2*len(vars) + 1;
y := x + sum(vars(k) * x^(2*k+1), k, 1, (n-1)/2);
cin(x0) := subst(y, x=x0);

solve(coeff( taylor(cin(taylor(cin(cin(x)), x, n)) - sin(x), x, n, polynom), x) = 0, vars)
→ [-1/18, -7/1080, -643/408240, -13583/29393280 ...]
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: [VA] Short & Sweet Math Challenge #24: "2019 Spring Special 5-tier" - Albert Chan - 03-25-2019 09:53 PM



User(s) browsing this thread: 1 Guest(s)