uncertainty of constants

3 次查看(过去 30 天)
hi.
Im having problems with a simple calculation. I have 2 constants, R and C and I need to multiply them. However R has got an uncertainty of +- 10% and C of +-1%. How do I get a result witch takes this into account?

采纳的回答

Walter Roberson
Walter Roberson 2011-10-3
The only possible answer in a simple calculation such as that is a range,
R * C * [9/10 * 99/100, 11/10 * 101/100]
With more complex expressions, determining the effect of a change in the inputs can be very difficult. Chaos Theory suggests that, indeed, there are many expressions for which the smallest possible change in the inputs can have results that are essentially unpredictable.
  3 个评论
John D'Errico
John D'Errico 2011-10-6
This is NOT the only possible answer!!!!!! In fact, statistical tolerancing theory provides tools to measure the uncertainty in the result. If R and C are assumed uniform, then the distribution can be computed, although that distribution may often not be a simple one.
Walter Roberson
Walter Roberson 2011-10-6
"Assumed uniform" is the key there, John. The original question gives no distribution information or hints, so the best we can do is define the output range.
testing with
[R,C] = ndgrid(linspace(0.9,1.1,100),linspace(0.99,1.01,100));
and plotting R.*C in various forms, I see no indication of anything other than a strictly uniform distribution over the expected trapezoid.

请先登录,再进行评论。

更多回答(1 个)

Daniel Shub
Daniel Shub 2011-10-3
That is a really good question, but really has nothing to do with MATLAB.
http://phys.columbia.edu/~tutorial/propagation/tut_e_4_2.html

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by