Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

All published worksheets from http://sagenb.org

189900 views
ubuntu2004

LIBRO: Ossifrage and Algebra

AUTOR: David A. SANTOS

Split 380 among Peter, Paul anda Mary.

So that Paula has 30 more than Peter, and Mary has 20 more than Paul

Problema 6.3.7

Dividir 380 entre Peter, Paul y Maria.

Por lo que Pablo tiene 30 mas que Pedro, y Maria tiene 20 mas que Paul.

Nos dan :

Dinero en total :  380

Nos piden:

x = Peter

y = Paul

z = Maria

Planteamos nuestras ecuaciones

x + y + z = 380

x + 30 = y

y + 20 = z

 

 

var ('x,y,z') ecuacion1= x+y+z == 380 ecuacion2= x+30 == y ecuacion3= y+20 == z solve ([ecuacion1,ecuacion2,ecuacion3],x,y,z)
[[x == 100, y == 130, z == 150]]

Peter tiene 100, Paul 130 y Maria 150