Ask Your Question
1

numerical solutions from a for-loop solve()

asked 2015-04-28 04:45:24 +0200

gottfried gravatar image

updated 2015-04-28 05:37:39 +0200

I am trying to extract a list of 3-tuples which solve a system of equations. For the test I am using a simply equation whose solutions go from negative to positive around one, so

n, u = var('n, u')
sltns=solve([n + u==0, n + c*u - 1==0], n, u)
L = [0, 1/4, 1/2, 3/4, 1, 5/4, 6/4, 7/4, 2]
for c in L:
    print (c,sltns[0].rhs(),sltns[1].rhs())

does not work.

What I am trying to get is, for example, if c = 1/2, then (1/2, 2, -2] because if c = 1/2 then n==2 and u==-2. And so on for all the elements of the list.

()
()
...
()

If I omit defining sltns, but use the solve() directly, I get out of range errors when for some c, u goes from positive to negative or vice versa for n, and I use [0].rhs(). Isn't sltns[2] the way to select, for example, [d==4] in [a==2, b==3, d==4], while sltns[0] and sltns[1] select the first two? Is it limited to some range positive or negative?

My question is: 1. What is the correct way to code the calculation above? 2. How would I alternatively code the loop if I needed the () s to be tuples in a matrix [(),(), ..., ()] for further calculations or plotting?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2015-04-28 15:23:33 +0200

calc314 gravatar image

updated 2015-04-28 15:25:52 +0200

There were a few issues with your code.

  1. sltns is a list containing the list of solutions. So, you need to access sltns[0] before accessing each piece of a solution.
  2. You cannot use the name c for the variable in the symbolic solution and in the loop.
  3. You need to substitute the c value within the loop into the solution.
  4. There is no solution when c=1.

Here is the corrected code.

var('n u c')
sltns=solve([n + u==0, n + c*u - 1==0], n, u)
print sltns
L = [0, 1/4, 1/2, 3/4, 5/4, 6/4, 7/4, 2]
for c1 in L:
    print (c1,sltns[0][0].rhs().subs(c==c1),sltns[0][1].rhs().subs(c==c1) )

To answer your second question, you can collect the information into a list of the rows and then convert to a matrix.

var('n u c')
sltns=solve([n + u==0, n + c*u - 1==0], n, u)
print sltns
L = [0, 1/4, 1/2, 3/4, 5/4, 6/4, 7/4, 2]
rows=[]
for c1 in L:
    print (c1,sltns[0][0].rhs().subs(c==c1),sltns[0][1].rhs().subs(c==c1) )
    rows.append([c1,sltns[0][0].rhs().subs(c==c1),sltns[0][1].rhs().subs(c==c1)] )
m=matrix(rows)
m
edit flag offensive delete link more

Comments

I need to some more karma myself to be able to upvote your answer (I'll upvote after using the site some more and getting more karma). BTW, to clarify, if there were three variables solved for, I would need to select the third one by writing sltns[0][2], yes?

gottfried gravatar imagegottfried ( 2015-04-28 16:59:24 +0200 )edit

Correct. .

calc314 gravatar imagecalc314 ( 2015-04-28 18:01:11 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

2 followers

Stats

Asked: 2015-04-28 04:45:24 +0200

Seen: 372 times

Last updated: Apr 28 '15