Question: "How to find the values of this series? "


How to find the values of X(1),X(2),..&Y(1),Y(2)...Plese help .

restart;

 

for k from 0 to 5 do
X(k+1):=solve(2*(k+1)*X(k+1)+(k+1)*Y(k+1)-X(k)-Y(k)+(1)/k!,X(k+1));
Y(k+1):=solve((k+1)*X(k+1)+(k+1)*Y(k+1)+2*X(k)+Y(k)+(1)/k!,Y(k+1)); od;


 

2

 

1

 

Warning, solving for expressions other than names or functions is not recommended.

 

Error, (in solve) a constant is invalid as a variable, -(1/2)*Y(1)+1

 

``

Download DE_Using_DTM-Ex-3(1).mw

 

Please Wait...