Confused about function solve
이전 댓글 표시
I am trying to use the function "solve" to find out the solution of inequality specified in cond1. Cond1 is shown in the following picture:

However, the solution is not obtained. I also plot the function given by the left of "cond1". Corresponding result shows there exactly exists the feasible solution.
Help!
Thank you in advance!
syms x;
cond1 = (x - 7) * x^2 / 2 - (4 + x)*2 >= 0;
sol = solve(cond1, x, 'ReturnConditions', true);
sol.conditions
댓글 수: 2
Walter Roberson
2020년 12월 24일
Convert it to an equality and solve(), and throw away any complex-valued roots. Then for each root, check to see which side of the root the inequality holds on.
Rik
2020년 12월 24일
Comment posted as flag by yuquan xiao:
Thank you! But I still do not know why such an inequality can not be directly solved with solve().
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Equation Solving에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!