If I want to solve two or more inequalities in the same input like those ones:
solve((x-1)<8,x)
solve((x-1)<15,x)
I would like to have the two solution all together. But in the output I have only the solution of the last inequality.
How to create a vector of inequalities as in put and a vector of solution as output?
If you add multiple variables, then you can solve separate inequalities with one call to
solve. For your example:I hope this helps ^_^