Loading [MathJax]/jax/output/HTML-CSS/jax.js

First time here? Check out the FAQ!

Ask Your Question
0

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

asked 5 years ago

Danny gravatar image

can you please solve it using sage

Preview: (hide)

Comments

2

High school homework ?

Emmanuel Charpentier gravatar imageEmmanuel Charpentier ( 5 years ago )

1 Answer

Sort by » oldest newest most voted
2

answered 5 years ago

zahllos gravatar image

updated 5 years ago

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:

ln(x)dx=xln(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.

Preview: (hide)
link

Comments

(I fixed the link)

vdelecroix gravatar imagevdelecroix ( 5 years ago )

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: 5 years ago

Seen: 769 times

Last updated: Jan 25 '20