Gamma
From Lmathmatica
Word types
| Name | Example | Usage |
| Function particle | Cat, eat, death, cos | eat@I = food. like@I = cat |
| Constant particle | I, you, that-there | |
| Operator | +,-,with,@,^,, | (cos@x)^2+(sin@x)^2:1 |
| Set operator | ||
| Logical operator | ||
| Grammatical particle | x,Q | |
| Divider | (,) |
(x+y)*2 (2*y)+x ((a+b)*(x-y))^(c-d) (((((a+b)*x)-y)^c)-d)
- P
^(*(+(a,b),-(x,y)),-(c,d)) as brackets assumed: ^*+a,b,-x,y,-c,d :((a+b)*(x-y))^(c-d)
- +a,b,^-x,y,-c,d :(a+b)*((x-y)^(c-d))
(a+b)*(x-y)^(c-d) a+b*(x-y) Or
How about Postfix notation? ie: *+ab^-xy-cd -> ab+xy-cd-^*:(a+b)*((x-y)^(c-d))
