Can all math expressions be converted into trees?

54 Views Asked by At

Operators usually have different notations (prefix, infix, postfix, ... ?), but expressions using them can all be transformed into expression trees.

E.g. ((a + b) * c) + 7

enter image description here

Is this true for all expressions used in mathematics?

What insights can this give us?