•  È facile costruire grafi ad albero, assai utili per riflettere sulla struttura dei termini e consolidare la comprensione dei vari modi con cui rappresentarli. Un primo esempio:
•  It is easy to construct tree graphs, which are very useful for reflecting on the structure of terms and consolidating an understanding of the various ways in which to represent them. A first example:

tree_diagram_1                   5 - (1 + 2)
       
   |-|
  /   \ 
 /     \
5       |+| 
       /   \
      /     \    
     1       2
•  Ecco il testo del file visualizzato sopra (che puoi copiare e modificare, e salvare con un nome diverso, con estensione htm o html):
•  Here is the text of the file displayed above (which you can copy and edit, and save with a different name, with the extension htm or html):

<table><tr><td><pre>       </pre></td><td>
<pre style="font-size:150%"><b>

   |-|
  /   \ 
 /     \
5       |+| 
       /   \
      /     \    
     1       2

</b></pre>
</td></tr></table>
•  Il grafo è descritto in <pre style=... > ... </pre> style="font-size:...%" serve per cambiarne le dimensioni.  Per ottenere il grafo basterebbero questi comandi. Aver aggiunto <table> ... </table> è servito per aggiungere degli spazi bianchi a sinistra del grafo, quelli racchiusi in <td><pre>  </pre></td>, che possiamo aumentare o diminuire.
Ecco altri esempi:
•  The graph is described in <pre style=... > ... </pre> style="font-size:...%" is used to change its size.  These commands would suffice to obtain the graph. Having added <table> ... </table> has served to add white spaces to the left of the graph, those enclosed in <td><pre>  </pre></td>, which we can increase or decrease.
Here are other examples:

tree_diagram_2                   -(a² + b²)
     
        |-|        
         |         
         |         
        |+|        
       /   \        
      /     \      
   |^|       |^|   
  /   \     /   \   
 /     \   /     \ 
a       2 b       2
tree_diagram_3                   √(1+2) / (3+4)
     
       |/| 
      /   \  
     /     \ 
  |√|       |+|
   |       /   \
   |      /     \ 
  |+|    3       4
 /   \   
1     2 
tree_diagram_4                   1/(2+3) + (4+5)/6
     
        __|+|__ 
       /       \
      /         \
   |/|           |/|
  /   \         /   \
 /     \       /     \
1      |+|   |+|      6
       / \   / \
      2   3 4   5
tree_diagram_5                   √(-a / (b+2))
     
     |√|
      |
      |
     |/|
    /   \ 
   /     \
 |-|     |+| 
  |     /   \
  |    /     \    
  a   b       2
tree_diagram_6                   √(-3 x+2 )
     
   |√|
    |
   |-|
    |
   |^|
  /   \ 
 /     \
3      |+| 
      /   \
     /     \    
    x       2
tree_diagram_7                   √((-3) x+2 )
    
    |√|
     |
    |^|
   /   \ 
  /     \
|-|     |+| 
 |     /   \
 3    /     \ 
     x       2

•  Ecco come affiancare più grafi ad albero:
•  Here's how to place multiple tree graphs side by side:

tree_diagram_0
         -(a² + b²)         |x| - (1 + 2)         √(1 + 2) / (3 + 4)
 
        |-| 
         |  
         | 
        |+| 
       /   \  
      /     \ 
   |^|       |^|
  /   \     /   \
 /     \   /     \ 
a       2 b       2
  

     |-|
    /   \
   /     \ 
|abs|     |+|
  |      /   \
  |     /     \ 
  x    1       2
  

       |/| 
      /   \  
     /     \ 
  |√|       |+|
   |       /   \
   |      /     \ 
  |+|    3       4
 /   \   
1     2 
<table><tr><td><pre> </pre></td><td>
<pre style="font-size:100%"><b>        |-| 
         |  
         | 
        |+| 
       /   \  
      /     \ 
   |^|       |^|
  /   \     /   \
 /     \   /     \ 
a       2 b       2
</b></pre>
</td>
<td><pre>  </pre></td><td>
<pre style="font-size:100%"><b>
     |-|
    /   \
   /     \ 
|abs|     |+|
  |      /   \
  |     /     \ 
  x    1       2
</b></pre>
</td>
<td><pre>  </pre></td><td>
<pre style="font-size:100%"><b>
       |/| 
      /   \  
     /     \ 
  |√|       |+|
   |       /   \
   |      /     \ 
  |+|    3       4
 /   \   
1     2 
</b></pre>
</td>
</tr></table>
•  Ho aggiunto più colonne nella "table". Ho ridotto le dimensioni dei caratteri.
•  I have added more columns in the "table". I reduced the font size.