Awe gbemisola

10 Reputation

One Badge

4 years, 320 days

MaplePrimes Activity


These are questions asked by Awe gbemisola

Good day house.

Please I don't know why the solve command does not display any results in the following code. Kindly assist. Thank you in anticipation.

restart;
omega := v/h;
t := sum(a[j]*x^j, j = 0 .. 6)+a[7]*cos(omega*x)+a[8]*sin(omega*x);
r1 := diff(t, x$2);
r2 := diff(t, x$4);
c1 := eval(t, x = q+2*h) = y[n+2];
c2 := eval(r1, x = q) = f[n];
c3 := eval(r1, x = q+h) = f[n+1];
c4 := eval(r1, x = q+2*h) = f[n+2];
c5 := eval(r1, x = q+3*h) = f[n+3];
c6 := eval(r2, x = q) = g[n];
c7 := eval(r2, x = q+h) = g[n+1];
c8 := eval(r2, x = q+2*h) = g[n+2];
c9 := eval(r2, x = q+3*h) = g[n+3];
b1 := seq(a[i], i = 0 .. 8);
`k≔solve`({c1, c2, c3, c4, c5, c6, c7, c8, c9}, {a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7], a[8]});

 

Page 1 of 1