Scrivi il termine che corrisponde al grafo a lato.
Eventualmente verifica la risposta usando il programma Albero o il programma Compilazione (dagli Oggetti Matematici).
                  /
   ______________/ \______________
  1                               -
                            _____/ \_____
                        SQR               x
                         |
                         +
                        / \
                       ^   1
                      / \
                      x 2

1 / ( √(x2 + 1 ) − x ).

Con R:
showTree(quote( 1/(sqrt(x^2+1)-x) ))
(/ 1 ( (- (sqrt (+ (^ x 2) 1)) x))

Con "Compila.exe" (in cui si usa "sqr" invece di "sqrt"):

Assegnazione? 1/(sqr(x^2+1)-x)
Un'assegnazione ha la forma  Variabile=.. :  aggiungo W= in testa
ASSEGNAZIONE:        W=1/(SQR(X^2+1)-X)
variabili->REGISTRI: R0=1/(SQR(R1^2+1)-R1)
Traduzione in istruzioni elementari:    1   R2 = R1 ^ 2     4   R5 = R4 - R1
                                        2   R3 = R2 + 1     5   R0 = 1 / R5
                                        3   R4 = SQR(R3)
grafo ad albero corrispondente:
                                       /
                     _________________/ \_________________
                    1                                     -
                                                  _______/ \_______
                                                SQR                X
                                                 |
                                                 +
                                                / \
                                               ^   1
                                              / \
                                              X 2

  Vedi anche questi script.

  Per altri commenti: struttura dei termini neGli Oggetti Matematici.