- #1
Siron
- 150
- 0
Hello!
I let Mathematica run the following command:
It displays a solutions in function of Roots Objects. However, I'm only interested in solutions over the reals. Therefore, I thought to just add 'Reals' at the end:
and Mathematica returns
It looks like it can't find any reals, which is quite strange? Is there someone who can tell what I'm doing wrong here? Furthermore, can someone perhaps recheck this with Mathematica?
Thanks in advance!
I let Mathematica run the following command:
HTML:
Solve[16 x^4 - 40 a x^3 + (15 a^2 + 24 b) x^2 - 18 a b x + 3 b^2 == 0 && 5 a x - 4 x^2 - b > 0 && 15 a x - 20 x^2 - 3 b < 0 && 4 x^3 - 8 c x^2 + 5 a c x - c b < 0 && a < 0 && x < 0 && c < 0, x]
It displays a solutions in function of Roots Objects. However, I'm only interested in solutions over the reals. Therefore, I thought to just add 'Reals' at the end:
HTML:
Solve[16 x^4 - 40 a x^3 + (15 a^2 + 24 b) x^2 - 18 a b x + 3 b^2 == 0 && 5 a x - 4 x^2 - b > 0 && 15 a x - 20 x^2 - 3 b < 0 && 4 x^3 - 8 c x^2 + 5 a c x - c b < 0 && a < 0 && x < 0 && c < 0, x, Reals]
HTML:
x == 0
It looks like it can't find any reals, which is quite strange? Is there someone who can tell what I'm doing wrong here? Furthermore, can someone perhaps recheck this with Mathematica?
Thanks in advance!