Hi there, Given a number of equations, I can give them to solve to get the solution set, eg:
solutions = solve([eq1, eq2, eq3]) However, solve seems to be deprecated in favor of solveset, but solveset only takes a single equation: solutions = solveset([eq1, eq2, eq3]) ValueError: [Eq(x, 1), Eq(y, 2), Eq(z, x + y)] is not a valid SymPy expression Is there way to combine a number of equations to a single one? I am very new to Sympy so I am sure I am missing something simple! Thanks, Bobby -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sympy. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/b46d2ef5-7cd8-4777-bb29-5ff1c9453afe%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
