Topic: Domain and Range

Hello! I am new to this graphing program and I am trying to work on a assignment! I was wondering if anybody could help me figure out how to insert the domain restrictions on a graph and how to add in the range as well!

Re: Domain and Range

The range can be specified in the Function|Insert function dialog. You can use the range function to force a function inside a domain, e.g. f(x)=range(-5, x^3, 6) will force the function x^3 inside the domain [-5;6]. You can use f(x)=if(-5 < x^3 < 6, x^3) to remove everything outside the domain [-5;6].