How to solve a pair of nonlinear equations using Python? In this question a pair of nonlinear equations that each has two arguments were solved.
Now I have more than two equations, each has a number of arguments. The number of arguments is more than the number of equations.
By using the method in the question. eg:
'''
def func0(a,b,c,d,local1=α,local2=β):
#process
return function
# func0==0
def func1():
return
#etc
def multi_equ(p):
a,b,c,d,e = p
return (func0(a,b,c,d,local1,local2),func1(c,d,e),func2(a,b,c,d,e,local),etc)
'''
My question is:
How to write the fsolve() to solve such function when, for example, sometime argument c is known, I am trying to solve the rests.