Ask Your Question
0

differentiate y = 7x^2 - ((2x^3)/(x+4))+2cos^2(4x)

asked 2020-01-22 19:09:56 +0200

Danny gravatar image

can you please solve it using sage

edit retag flag offensive close merge delete

Comments

2

High school homework ?

Emmanuel Charpentier gravatar imageEmmanuel Charpentier ( 2020-01-22 22:57:23 +0200 )edit

1 Answer

Sort by ยป oldest newest most voted
2

answered 2020-01-24 19:38:00 +0200

zahllos gravatar image

updated 2020-01-25 16:59:40 +0200

vdelecroix gravatar image

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.

edit flag offensive delete link more

Comments

(I fixed the link)

vdelecroix gravatar imagevdelecroix ( 2020-01-25 16:59:47 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2020-01-22 19:09:56 +0200

Seen: 392 times

Last updated: Jan 25 '20