I'm making a batch program to solve some equations, I'm hoping that my end result can give me the binary for a QR code. Anyway, I just started with the calculations with exponents. My problem is that I don't know how to do that in batch since I need to use my exponents with a variable x:
x^2 + x^3
x^4 + x^5
x^2 * x^4 + x^3 * x^5
= x^6 + x^8
Then I thought that I could maybe use couples of numbers since I only need to add one exponent to the other.
(2 , 3) +
(4 , 5)
= (6 , 8)
And I searched the web but didn't find anything about it.
It'd be nice to get help on both methods but (in scratch) I prefer the couples method.