I had to do some calculations like:
\node (A) {A};
\node (b) at (x,y) {B};
((A) + (B))*2
However I could not figure out how to group it in a calc statement, I tried ($((A)+(B))*2$) and (${(A)+(B)}*2$). How can I express this? (Currently I use ($(A)*2+(B)*2$), so I have to adjust the factor in two places)
A similar issue occurs with the |- Operator. I can use it in calculations as long as I don't try pulling of mathematic operations on one of the operands. Is there a way to achieve ($((A)+(B)) |- (4,7)$)?

Cis\node at ([scale=2]$(A)+(B)$) {C};. – Qrrbrbirlbel Feb 04 '13 at 19:58