Open mikofski opened 8 years ago
If equations (or systems of equations) are non-linear or implicit, IE: they can't be solved analytically , how will uncertainty be propagated?
Assuming non-linear equations are written as residuals:
EG 1: non-linear function
y = f_nonlinear(x)
x
y
F = f_nonlinear(x) / y - 1.0
EG 2: non-linear and implicit
y = f_nonlinear(x, y)
F = f_nonlinear(x, y) / y - 1.0
EG 3: non-linear and implicit with extra terms
y = f_nonlinear(x, y, a, b, c)
y, a, b, c
x, a, b, c
F = f_nonlinear(x, y, a, b, c) / y - 1.0
If equations (or systems of equations) are non-linear or implicit, IE: they can't be solved analytically , how will uncertainty be propagated?
Assuming non-linear equations are written as residuals:
EG 1: non-linear function
y = f_nonlinear(x)
x
giveny
find the roots of the following equationF = f_nonlinear(x) / y - 1.0
EG 2: non-linear and implicit
y = f_nonlinear(x, y)
x
giveny
ory
givenx
find the roots of the following equationF = f_nonlinear(x, y) / y - 1.0
EG 3: non-linear and implicit with extra terms
y = f_nonlinear(x, y, a, b, c)
x
giveny, a, b, c
ory
givenx, a, b, c
find the roots of the following equationF = f_nonlinear(x, y, a, b, c) / y - 1.0
idea 1
idea 2