What does r signify in this output?
It appears after lam ==
solve([diff(P,x) == 0, diff(P,y) == 0], x, y, lam)
[[x == 816.8214285714286, y == 506.0324074074074, lam == r5], [x == -816.2645502645503, y == -514.5402298850574, lam == r6], [x == (13.33265402759081 + 1414.015105182754*I), y == (3.906674551362281 - 883.7900965450355*I), lam == r7], [x == (13.33265402759081 - 1414.015105182754*I), y == (3.906674551362281 + 883.7900965450355*I), lam == r8]]
The
r1, r2, r3, r4
"free variables" were allocated at some previous run.In this run, the lamba value, declared as a variable of the system (although it has nothing to do with the system (if
P
not mentioned here, but in some other post, does also not depend onlam
)), is not involved in the system. So it can be freely chosen. In each of the four new solution is chosen a new one, so this gives rise tor5, r6, r7, r8
.@dan_fulea Yeah, I realize
lam
has nothing to do with the system. I am just trying to emulate an example from a textbook which includes the variablelam
. However, I am unable to figure out whatlam
is supposed to do or what it is supposed to equal.