The 24th problem in the first chapter of Spivak's Calculus has to do with proving that the placement of parentheses in a sum is irrelevant. Let $s(a_1, a_2,... a_{n})$ denote some sum formed from $a_1, a_2,...a_n$. For example, if $n=5$, $s(a_1, a_2,... a_{5})$ may represent $(a_1 + a_2) + (a_3 + (a_4 + a_5))$, $((a_1 + a_2) + (a_3 + a_4)) + a_5$, etcetera.
Part C of the question asks us to prove that $s(a_1, a_2,... a_{n}) = a_1 + a_2 + .... a_n$.
Note that $a_1 + a_2 + .... a_n$ is defined as $a_1 + (a_2 + (a_3 +....+ (a_{n-2} + (a_{n-1} + a_n)))..))$
A very helpful hint was given for this exercise. He tells us that there must be two sums $s'(a_1, a_2,... a_{l})$ and $s''(a_{l+1}, a_2,... a_{n})$ such that $s'(a_1, a_2,... a_{l}) + s''(a_{l+1}, a_2,... a_{n}) = s(a_1, a_2,... a_{n})$. Then we may use complete induction since the statement for $n=1$ is (trivially) true (as well as another identity proven in part B of the exercise, namely $(a_1 + a_2 + .... a_k) + (a_{k+1} + a_{k+2} + .... a_n) = a_1 + a_2 + .... a_n$) to obtain the desired result.
The problem I have is proving the hint itself! Namely that $s(a_1, a_2,... a_{n})$ may be "partitioned" such that for some $l<n$ there exists two sums which satisfy $s'(a_1, a_2,... a_{l}) + s''(a_{l+1}, a_2,... a_{n}) = s(a_1, a_2,... a_{n})$. I am inclined to dismiss the hint as obvious but I cannot---the purpose of the exercise is to rigorously prove the most obvious facts about addition. I've tried been playing around with various tricks using induction but so far have had no luck. I can't think of any other method given the sheer multitude of variations on parentheses, especially for large $n$. Any help would be appreciated.
Greg Martin's comment contains the answer, but it may be worth elaborating a bit. Perhaps you should say what definition of fully parenthesized sum you are using. I will give mine below, but it may disappoint you since the property you are trying to prove becomes true by definition. If you are using some other definition, I would be happy to delete or modify my answer.
I define a fully parenthesized summand to be either a primitive element (an indeterminate or number) or an expression of the form $(A+B)$, where both $A$ and $B$ are fully parenthesized summands. With this definition, it is always clear what the two summands are for each plus sign; an expression like $(x+y+z)$ is ambiguous, since it is not clear whether the right summand of the first plus sign is $y$ or $y+z$, but $(x+y+z)$ is not a fully parenthesized summand by my definition. Then define fully parenthesized sum to be either a primitive element or an expression of the form $A+B$, where both $A$ and $B$ are fully parenthesized summands. The definition is structured this way (distinguishing sum from summand) to avoid having an extra pair of parentheses around the entire expression. (Summands differ from sums, for expressions of two or more terms, only in having these extra outer parentheses.)
Given an ordered list of, say, indeterminates, $a_1,a_2,\ldots,a_n$, a fully parenthesized sum of those elements should be an expression in which $a_i$ appears to the left of $a_j$ in the expression if $i<j$. To enforce this, we make the following definitions. A fully parenthesized summand of $a_1,a_2,\ldots,a_n$ is $a_1$ if $n=1$ and an expression of the form $(A+B)$ if $n>1$, where $A$ is a fully parenthesized summand of $a_1,a_2,\ldots,a_l$ and $B$ is a fully parenthesized summand of $a_{l+1},a_{l+2},\ldots,a_n$ for some $1\le l<n$. A fully parenthesized sum of $a_1,a_2,\ldots,a_n$ is $a_1$ if $n=1$ and an expression of the form $A+B$ if $n>1$, where $A$ is a fully parenthesized summand of $a_1,a_2,\ldots,a_l$ and $B$ is a fully parenthesized summand of $a_{l+1},a_{l+2},\ldots,a_n$ for some $1\le l<n$.
The statement you are trying to prove is now true by definition: $s'(a_1,\ldots,a_l)$ and $s''(a_{l+1},\ldots,a_n)$ are the $A$ and $B$ of the definition. I don't see any straightforward alternative definition that captures the needed properties, namely, that the left and right summands of every addition operation are unambiguously identified, and that the indeterminates appear an a specified left-to-right ordering.
Incidentally, a lot is known about fully parenthesized sums. Here are the first several. $$ \begin{aligned} &x_1 && \text{($1$ sum)}\\ &x_1+x_2 &&\text{($1$ sum)}\\ &(x_1+x_2)+x_3,\ x_1+(x_2+x_3) && \text{($2$ sums)}\\ &((x_1+x_2)+x_3)+x_4,\ (x_1+(x_2+x_3))+x_4,\ (x_1+x_2)+(x_3+x_4),\\ &\qquad x_1+((x_2+x_3)+x_4),\ x_1+(x_2+(x_3+x_4)) && \text{($5$ sums)}\\ \end{aligned} $$ For five indeterminates, there are $14$ sums; for six, there are $42$. These are the Catalan numbers, which enumerate many different combinatorial structures. Our definitions imply that if $C_n$ is defined to be the number of fully parenthesized sums in $n+1$ indeterminates, then $C_n$ satisfies the recurrence $$ \begin{aligned} C_0&=1,\\ C_n&=\sum_{j=0}^{n-1}C_jC_{n-1-j} && \text{if $n\ge1$.} \end{aligned} $$ These sums are closely related to full binary trees (see the linked article on Catalan numbers).