How to solve an inequality

2 views (last 30 days)
Xuanhan 朱
Xuanhan 朱 on 3 Jun 2021
Commented: Xuanhan 朱 on 3 Jun 2021
The inequality goes as follow, is it possible to solve for x.
15x-15+0.41*[sqrt(1/60516+1/123*(15x-2.9))-1/246]^2*3000<2.9
I'm not very familiar with using MATLAB, I hope that someone can teach me on this.
Any kind of help is appreciated.

Accepted Answer

David Hill
David Hill on 3 Jun 2021
f=@(x)15*x-15+0.41*(sqrt(1/60516+1/123*(15*x-2.9))-1/246)^2*3000-2.9;
g=@(x)1/60516+1/123*(15*x-2.9);
x=[fzero(g,.2),fzero(f,.3)];%x must be between these values
  1 Comment
Xuanhan 朱
Xuanhan 朱 on 3 Jun 2021
Thank you! The answers are verified to be right in my engineering software simulation (LTspice)

Sign in to comment.

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!