Originally posted as an answer by amod47463; deleted and pasted here as a comment
Hi Joseph,
Thanks for the reply. Just to clarify: Do the workings above refer to the "euclidean distance" which is defined on the dendropy website (http://pythonhosted.org/DendroPy/tutorial/treestats.html) as:
"The sum of absolute differences in branch lengths for equivalent splits between two trees, with the branch length for a missing split taken to be 0.0."
Would you say this is a correct definition of the above calculation (it seems to be)? In the dendropy example however they give an answer of 2.2232636377544162 for euclidean distance.
On the other hand they define the Robinson Foulds algorithm as:
"the sum of the square of differences in branch lengths for equivalent splits between two trees, with the branch length for a missing split taken to be 0.0."
I would take this (based on the above) to be:
Split t5 => 2.161175 - 0.161175 = 2^2 = 4
Split t5 t6 t4 t3 => 1 - 0.028969 = 0.971031^2 = 0.94290120
Sum = 4.94290120
Any further clarification greatly appreciated.