I wanted to convert the following expression to Functional, Polish and Reverse Polish notation.
$$Y =A + \frac{B+ \dfrac{BA}{B+CA}}{A - \dfrac{BC}{B-C+A}}$$
I know how to do Standard -> Functional -> Polish. But I'm kind of stuck on the RPN. Could someone explain to me how to do it, and what the quickest way is to do this by hand, for example if I had to do it on a much more complex expression? Maybe a shortcut or something like that to make it less tedious?
Also if anyone could check my work I would be really appreciative - for the Functional notation I got:
$+(A, /(+(B, /(*(B, A), (+(B, *(C, A)), -(A, /(*(B, C), -(B, +(C, A))$
and for the Polish obviously the same without the commas and parentheses.