Hi, I'm doing a project that requires a lot of complicated shading in grapher (using inequalities). It would really help for me to be able to set the domain and/or range of the inequalities using an 'or' boolean statement. For example, I can do this:
x>0 : y<x+3
and I can use 'and' statements:
x>0 & x<3 : y<x+3
but I need to be able to do something like this:
x<0 OR x>3 : y<x+3
I know for this example I could just split it into two equations, but for the one I'm doing with multiple overlapping conditions, I need to be able to use an 'or' operator.
Does anyone know how to do this?
Thanks!
x>0 : y<x+3
and I can use 'and' statements:
x>0 & x<3 : y<x+3
but I need to be able to do something like this:
x<0 OR x>3 : y<x+3
I know for this example I could just split it into two equations, but for the one I'm doing with multiple overlapping conditions, I need to be able to use an 'or' operator.
Does anyone know how to do this?
Thanks!