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!