/* [wxMaxima batch file version 1] [ DO NOT EDIT BY HAND! ]*/ /* [wxMaxima: title start ] Stundenlohn [wxMaxima: title end ] */ /* [wxMaxima: section start ] Problembeschreibung [wxMaxima: section end ] */ /* [wxMaxima: comment start ] ****************************************** Dokumentnummer: D1061 Quelle: http://www.edhelper.com ****************************************** The hourly wages of Megan and Jasmine are in the ratio of 18:19. Today, they each worked six hours. Jasmine earned $4.32 more than Megan for today's work. How much does Jasmine earn per hour? [wxMaxima: comment end ] */ /* [wxMaxima: section start ] Problemlösung [wxMaxima: section end ] */ /* [wxMaxima: comment start ] VERARBEITUNG [wxMaxima: comment end ] */ /* [wxMaxima: input start ] */ g1:m/j=18/19; /* [wxMaxima: input end ] */ /* [wxMaxima: input start ] */ g2:6*j-4.32=6*m; /* [wxMaxima: input end ] */ /* [wxMaxima: input start ] */ l:solve([g1,g2],[m,j]); /* [wxMaxima: input end ] */ /* [wxMaxima: input start ] */ l:l,numer; /* [wxMaxima: input end ] */ /* [wxMaxima: input start ] */ m:m,l[1][1]; /* [wxMaxima: input end ] */ /* [wxMaxima: input start ] */ j:ev(j,l[1][2]); /* [wxMaxima: input end ] */ /* [wxMaxima: comment start ] AUSGABE [wxMaxima: comment end ] */ /* [wxMaxima: input start ] */ print("Der Stundenlohn von Jasmin ist",j)$ /* [wxMaxima: input end ] */ /* Maxima can't load/batch files which end with a comment! */ "Created with wxMaxima"$