[Go to the Notes on Diffy Qs home page]
Press the Evaluate button below to launch each Sage demonstration. You may have to wait a little before the graph or result appears. Be patient. If you want to do something more complicated, see the Sage documentation. If you want to use Sage more and save your work, you can either try installing Sage on your computer (more difficult) or consider using Sage on the cloud at CoCalc.
Here we plot a function. Most common functions are supported, exponents are done with ^ and don't forget to use * when multiplying. Change the first argument to change the function, and in the second argument you can change the range.
xxxxxxxxxx
plot( (x^2+3*x)*sin(x+0.5)-sinh(x), (x,-5,5))
Several functions can be plotted together. Here we plot sine, cosine, and a polynomial at the same time in different colors.
xxxxxxxxxx
plot1 = plot( sin(x), (x,-5,5), color="blue")
plot2 = plot( cos(x), (x,-5,5), color="red")
plot3 = plot( 0.03*(x-3)*x*(x+3), (x,-5,5), color="green")
(plot1+plot2+plot3).show()
Similar as above, but by default only x is declared as a variable, so
we have to now declare y. We draw the solution to
xxxxxxxxxx
var("x y")
f(x,y) = sin(y)+cos(x^2)
sol = desolve_rk4(f(x,y),
y, ivar=x,
ics=[1,2],
end_points=[-5,5],
step=0.05, output='plot')
sol.show()
Here, we solve a first order ODE to find a general solution.
Here
xxxxxxxxxx
y = function('y')(x)
desolve(diff(y,x) == 3*y + e^x, y).show()
How about an initial condition
xxxxxxxxxx
y = function('y')(x)
desolve(diff(y,x) == 3*y + e^x, y, ics=[1,2]).show()
Let's solve second order ODE. Here the second derivative is written as "diff(y,x,2)"
xxxxxxxxxx
y = function('y')(x)
desolve(diff(y,x,2) + diff(y,x) + y == e^x, y).show()
And how about initial conditions for a second order equation.
Here we give a triple of numbers for the "ics", that is,
xxxxxxxxxx
y = function('y')(x)
desolve(diff(y,x,2) + diff(y,x) + y == e^x, y, ics=[0,1,pi]).show()
Since we're here, we might as well show how to integrate. Let us integrate
xxxxxxxxxx
show(integrate(1/(x^2-1),x))
xxxxxxxxxx
show(integrate(1/(x^2-1),x,2,pi))