does the arduino use the RAM to store intermediate results
The formula would have to be very long and very complex. Most intermediate results are stored in registers (the processor has lots) and, with very few exceptions, the compiler generates code that reduces the number of intermediate values. When the equation you posted is evaluated, no SRAM is used; only registers.
What I am getting at is, would these types of operations use more RAM
Very very rarely.
- Brian