math software - Gr. 11 Functions - Limiting domain and range on a graphing calculator - Mathematics Stack Exchange
How to Write a Graph w/ Domain? (TI-84+) - Cemetech | Forum | Using the TI-83 Plus/TI-84 Plus [Topic]
Restricting the Domain
How do I restrict the domain in Windows 10 graphing calculator?
Title says it all, any help would be much appreciated :) EDIT: Edited to add screenshot, thus proving the existence of the Windows 10 stock graphing calculator lol :)
You used the if operator incorrectly. The format is
if( condition, what to do if True, what to do if False)
But you put another condition in the place of "what to do if false".
Here's an example: I want a function which is equal to $3x$ between $x=1$ and $x=4$, is equal to $x+8$ between $x=4$ and $x=5$, and is undefined otherwise. The code could be
if(x>5, ln(0), if(x>4, x+8, if(x>1, 3*x, ln(0) ) ) )
Here I'm using $\ln(0)$ with the hope that it will simply produce no output for the corresponding range, rather than halt the entire computation. Don't have the app (or iPad for that matter), so can't tell for sure.
You need to set the function to "undefined" when it is not in your region. Do you see any way to do that?