Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

All published worksheets from http://sagenb.org

Views: 168714
Image: ubuntu2004

1) Simplifique cada una de las siguientes expresiones.

a) ((x4y2z7)/(2x3y4z7))((x^4*y^2*z^7) / (2*x^3*y^4*z^7))

var('x,y,z')
(x, y, z)
simplify((x^4*y^2*z^7) / (2*x^3*y^4*z^7))
1/2*x/y^2

b) ((x3y(3x4+5)3)/(x4y9(3x4+5)7))(( x^3*y*(3*x^4 + 5)^3) / (x^4*y^9*(3*x^4 + 5)^7))  

var ('x,y')
(x, y)
simplify (( x^3*y*(3*x^4 + 5)^3) / (x^4*y^9*(3*x^4 + 5)^7))
1/((3*x^4 + 5)^4*x*y^8)