Self checking table (between values)

Hello,

I am truly a novice. Maybe I am expecting too much from Desmos.

I have done self-checking between numeric values. I would like to do the same thing with a table.

We are working with the unit circle and are estimating values of x and y. I have tried to apply the same thinking to a table. Alas, it is not working… hence the post.

Here is what I have tried:

cellContent(2,4): when table2.cellNumericValue(2,2)= numericValue(">0.95") and table2.cellNumericValue(2,2)=numericValue("<0.98") and table2.cellNumericValue(2,3) = numericValue(">0.25") and table2.cellNumericValue(2,3) = numericValue("<0.27") “:white_check_mark:” otherwise “:x:

Thank you for your time and assistance.

Try this:

cellContent(2,4):
  when table2.cellNumericValue(2,2)>0.95 and table2.cellNumericValue(2,2)<0.98 and
  table2.cellNumericValue(2,3)>0.25 and table2.cellNumericValue(2,3)<0.27 “✅”
  otherwise “❌”

I tried and got the error message “unexpected token” here:
:white_check_mark: otherwise :x:

The quotation marks on this website don’t always copy over to Desmos correctly. I have no idea why they format differently, but all you need to do is delete those quotation marks and retype them.

1 Like

WOW!

Thanks so much!!