Ask Your Question

Alesekk's profile - activity

2023-04-27 22:29:16 +0200 received badge  Popular Question (source)
2023-01-10 00:26:52 +0200 received badge  Student (source)
2022-11-28 09:10:30 +0200 marked best answer Algebraically solving system of nonlinear equations with parameters

Hello,

I am kind of new to the sage and I would like to solve system of two nonlinear equations that look like this:

a,b,c,d = var('a,b,c,d')  
solve([c==a*(a/(a+2*b))+2*b*(a/(a+b)),d==a*(b/(a+2*b))+b*(b/(a+b))],a,b)

I have an idea how the result looks like based on Wolfram alpha, but I would like to verify it using sage. The problem is, that sage only gives me anwer a=0 and b=0, which is clearly not the solution, because I would have divide by zero error. Do you have any ideas what to use or how to solve it? Thanks for all replies.

2022-11-28 09:10:30 +0200 received badge  Scholar (source)
2022-11-23 08:26:27 +0200 asked a question Algebraically solving system of nonlinear equations with parameters

Algebraically solving system of nonlinear equations with parameters Hello, I am kind of new to the sage and I would lik