RosettaCodeData/Task/Numeric-error-propagation/Mathematica/numeric-error-propagation-2.math

6 lines
103 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
x1 = 100 ± 1.1;
y1 = 50 ± 1.2;
x2 = 200 ± 2.2;
y2 = 100 ± 2.3;
d = Sqrt[(x1 - x2)^2 + (y1 - y2)^2]