Iterate two sets of formulas
I have a sheet in which I have two sets of formulas. For these sets of formulas I have to iterate 1 input variable untill both sets generate the same end result.
Example (which will probably not yield any result):
Input: A, B, C, D
variable input: E
set 1:
H = A + B
I = C^2
J = H^D+I
Z = E*H*I*J
set 2:
M = A * B
N = C/2^0.5
O = N^E
Z = M * N * O
now I have to select E such that Z in set 1 equals Z in set 2. I can do this using a while loop, but because I want to get a result with at least 6 decimals.
Is there a standard function in Mathcad which can do something like this?

