Post Reply 
Any way to solve parametric inequations?
09-14-2021, 10:23 AM
Post: #12
RE: Any way to solve parametric inequations?
(09-14-2021 09:35 AM)Albert Chan Wrote:  Perhaps it should be setup with 2 assumes (y≥0, y≤0), like ti-89 solution.
Or, "safer" assumes (y>0, y<0), and handle y==0 edge case separately.

WolframAlpha does the safe way: solve x*y/(x+y)^2 <= 0, for (y,x)

Code:
y < 0: (0 ≤ x < -y) OR (x > -y) 
y = 0: (x < 0) OR (x > 0)
y > 0: (x < -y) OR (-y < x ≤ 0)
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Any way to solve parametric inequations? - Albert Chan - 09-14-2021 10:23 AM



User(s) browsing this thread: 1 Guest(s)