Solve inequation not working with sqrt
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Diego Marvid
il 28 Set 2020
Risposto: Prudhvi Peddagoni
il 1 Ott 2020
I tried to solve a simple inequation that had square root of the variable and the solve() function is not giving me the correct answer.
The inequation is:
The code is:
clear;
syms k real
eq = ( -1 + sqrt(1-4*k) )/2 < 1;
solve(eq, k)
And the answer is 0.
Since k is real the answer should be the interval (-2, 1/4)
0 Commenti
Risposta accettata
Prudhvi Peddagoni
il 1 Ott 2020
Hi,
It seems that you did not enable ReturnConditions parameter. So the function is returning only one solution
solve(eq, k,'ReturnConditions',true);
0 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!