Hi Daniel, DJDANG escribió: > Hello everyone, > I'm sure someone can help me to solve this problem I'm having right > now. It's about vectors and it's really easy when you do it on paper > but it becomes a little tricky when you try to solve it in sage. > > This is the problem: > Let be u=(1,2), v=(-3,4), w=(w1,4), x=(-2,x2) where w1, x2 are > integers. > Find w1 and x2 if > a) w=2*u > b) (3/2)x=u > c) w+x=u > > Please help me with the adecuate code to solve this problem. > Thank in advance, > Daniel Gonzalez ;-) > >
Please share with us also the code you have already done. If this is the code that we see this morning is something like this (there could be errors but I don't remember all the code): var('w1,x2') u = vector([1,2]) v = vector([-3,4]) w = vector (w1,4]) x = vector([-2, x2]) answers = [] for i in range(2): asnwers.append(solve(w == 2 * u) answers We get something with four responses, but the question is: how can I solve vectorial ecuations like v = 2*u if there are variables and numbers in the vectors? Cheers, Offray --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sage-edu" group. To post to this group, send email to sage-edu@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-edu?hl=en -~----------~----~----~----~------~----~------~--~---