solve 2 equations in terms of other variables
Hi,
I have
RL,Rs,C,L,Q,wo=var('RL Rs C L Q wo')
then I say
eq1=wo==Q*(C*RL*Rs+L)/(C*L*RL)
eq2=wo==sqrt((RL+Rs)/(C*L*RL))
solve([eq1,eq2,C,L)
I would like to solve the above system in terms of C and L. How do I do this?