RosettaCodeData/Task/Numeric-error-propagation/Mathematica/numeric-error-propagation-2.math
2023-07-01 13:44:08 -04:00

5 lines
103 B
Text

x1 = 100 ± 1.1;
y1 = 50 ± 1.2;
x2 = 200 ± 2.2;
y2 = 100 ± 2.3;
d = Sqrt[(x1 - x2)^2 + (y1 - y2)^2]