differentiate y = 7x^2 - ((2x^3)/(x+4))+2cos^2(4x)
can you please solve it using sage
can you please solve it using sage
This is relatively easy to do using the documentation, see the basic algebra page on differentation: https://doc.sagemath.org/html/en/tuto....
One of my favourite problems is to show that:
$$\int \ln(x) dx = x\ln(x) - x + C$$
In sagemath this can be done as follows:
u = var('u')
f(u) = ln(u)
f
u |--> log(u)
integral(f(u),u)
u*log(u) - u
You should be able to adapt this example to your case.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2020-01-22 19:09:56 +0100
Seen: 592 times
Last updated: Jan 25 '20
High school homework ?