Hi everybody,
I am new to sage, trying to solve an inequality using sage, i.e:
m,a,d,w,e,c=var('m,a,d,w,e,c')
x_br=1/2*(2*c*d - d*e - d*w)/(2*d*m - e + w)
solve(x_br<=d/2,m)
But what I get is:
[[w == -2*d*m + c], [d == 0], [max(-2*d*m + e, -d*m + c) < w, 0 <
d], [-2*d*m + e < w, w < -d*m + c, d < 0, -d*m + e < c],
[-d*m + c < w, w < -2*d*m + e, d < 0, c < -d*m + e], [w <
min(-d*m + c, -2*d*m + e), 0 < d]]
It is solved based on w
instead of m
. I tried different variables but the result is always the same. What should I do to have solution based on x
?
Thank you in advance.