필터 지우기
필터 지우기

Solve inequation not working with sqrt

조회 수: 2 (최근 30일)
Diego Marvid
Diego Marvid 2020년 9월 28일
답변: Prudhvi Peddagoni 2020년 10월 1일
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)

채택된 답변

Prudhvi Peddagoni
Prudhvi Peddagoni 2020년 10월 1일
Hi,
It seems that you did not enable ReturnConditions parameter. So the function is returning only one solution
solve(eq, k,'ReturnConditions',true);
This will return all the possible solutions. Please refer this link for more info.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Specialized Power Systems에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by