Differential Equations
fricas
(1) -> y := operator y
fricas
deq := D(y(x),x)=(1+y(x)^2)/(1+2*x*y(x))
Type: Equation(Expression(Integer))
fricas
solve(deq,y,x)
Type: Union(Expression(Integer),...)
fricas
deq := D(y(x),x,3)+D(y(x),x,2)+D(y(x),x,1)+y(x)=x*sin(x)
Type: Equation(Expression(Integer))
fricas
solve(deq,y,x)
Type: Union(Record(particular: Expression(Integer),basis: List(Expression(Integer))),...)
test solution
fricas
deq := D(y(x),x)=(a+y(x)^2)/(b+2*x^2*y(2*x))
Type: Equation(Expression(Integer))
fricas
solve(deq,y,x)
>> Error detected within library code:
getfreelincoeff: not a linear ordinary differential equation
Linear non homog equation
fricas
deq := D(y(x),x) = y(x)^2 + 2 * y(x) + 1
Type: Equation(Expression(Integer))
fricas
solve(deq,y,x)
Type: Union(Expression(Integer),...)
fricas
z := operator z
fricas
deq2 := D(z(x),x) = exp(y(x))/(1 - d * y(x))
Type: Equation(Expression(Integer))
fricas
solve(deq2,z,x)
Type: Union(Record(particular: Expression(Integer),basis: List(Expression(Integer))),...)