You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| EQUAL |`EXPRESSION = EXPRESSION`| Checks if the expressions are equal |`answer = response`|
47
-
| WHERE |`EXPRESSION = EXPRESSION where EXPRESSION = EXPRESSION, ... , EXPRESSION = EXPRESSION`| Checks if the equality on the left side of `where` are equal if the equalities in the comma-separated list on the right side of `where`|`answer = response`|
46
+
| EQUAL |`EXPRESSION = EXPRESSION`| Checks if the expressions are equal |`answer = response` - Default way to check equality of expressions |
47
+
| ORDER |`EXPRESSION ORDER EXPRESSION`| Checks if the expressions have the given order. ORDER operators can be `>`, `<`, `>=`, `<=`|`answer > response` - Checks if the answer is greater than the response |
48
+
| WHERE |`EXPRESSION = EXPRESSION where EXPRESSION = EXPRESSION; ... ; EXPRESSION = EXPRESSION`| Checks if the equality on the left side of `where` are equal if the equalities in the comma-separated list on the right side of `where`|`answer = response where x = 0` - Checks if the curves given by the answer and the response intersect when $x=0$. |
49
+
| WRITTEN_AS |`EXPRESSION written as EXPRESSION`| Syntactical comparison, checks if the two expressions are written the same way. |`response written as answer` - Checks if the response is written in the same for as the answer (e.g. if answer is `(x+1)(x+2)` then the response `x^2+3x+2` will not satisfy the criteria but `(x+3)(x+4)` will). |
50
+
| PROPORTIONAL |`EXPRESSION proportional to EXPRESSION`| Checks if one expression can be written is equivalent to the other expression multiplied by some constant. |`answer proportional to response`|
51
+
| CONTAINS |`EXPRESSION contains EXPRESSION`| Checks if the left expression has the right expression as a subexpression. |`response contains x` - Checks if the response contains the symbol x |
0 commit comments