Ask Your Question
1

Interpreting solution of a system of linear equations

asked 2013-08-13 11:27:35 +0200

fccoelho gravatar image

updated 2013-08-13 11:28:20 +0200

Hi I am solving the following system:

var('C_at C_au C_bt C_bu I J k_1 k_2 gamma_1 gamma_2')
ss = solve([I-k_1*C_at,k_1*C_at - gamma_1*C_au, k_2*C_bu - gamma_2*C_bt, k_2*C_bu -   gamma_2*C_bt],C_at,C_au,C_bt,C_bu)
ss

and I get the following solution:

[[C_at=I/k_1,C_au=I/?_1,C_bt=k_2*r8/?_2,C_bu=r8]]

what is r8?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2013-08-13 18:48:51 +0200

ndomes gravatar image

A free parameter, automatically set when the solution is not unique. It should be r1 when you evaluate the cell the first time. Further evaluations increment to r2, r3, ....

edit flag offensive delete link more

Your Answer

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

Add Answer

Question Tools

Stats

Asked: 2013-08-13 11:27:35 +0200

Seen: 348 times

Last updated: Aug 13 '13