필터 지우기
필터 지우기

why matlab Make a mistake in calculating sin and cos while teta in wiling to zero ?

조회 수: 2 (최근 30일)
dear all
as it is obvious base on the Taylor series or l'hopital's rule , answer the below equation is 1/2
Taylor series :
(1-cos(teta))/(teta^2)= 1/2! - (teata^2)/4!
and while teta wiling to zero others terms become zero and the answer is 1/2
l'hopital's rule
(1-cos(teta))/(teta^2)= sin(teta)/(2*teta) =(1/2)*(cos(teta))
and again while teta wiling to zero answer is 1/2
but matlab act different and it gives right answer when you assume that teta is 0.01 or 0.001 but when you assume that teta is 0.00001 matlab give zero answer to this equation
is it my fault or something wrong with matlab and i really appreciated if some one can help me and if let me know if there is code for my problem

채택된 답변

Walter Roberson
Walter Roberson 2018년 1월 26일
By teta = .0000001 then cos(teta) becomes 1 to the limit of double precision, considering round-off error. Then 1-cos(teta) is 0, so you get 0 as the result.
This is a limitation in numeric processing with finite precision. If double precision had (for example) 80 bits instead of 53, then the problem would still occur, just with a smaller x.
  댓글 수: 2
shahin hashemi
shahin hashemi 2018년 1월 26일
thank you for your attention mr walter
is there any way to increase this limitation that cause the round off error ?
Walter Roberson
Walter Roberson 2018년 1월 26일
The Symbolic toolbox is the main supported tool for extended precision. You could also look at https://www.mathworks.com/matlabcentral/fileexchange/6446-multiple-precision-toolbox-for-matlab (read the comments on the submission for some corrections.)

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Torsten
Torsten 2018년 1월 26일
편집: Torsten 2018년 1월 26일
https://de.mathworks.com/help/matlab/matlab_prog/floating-point-numbers.html
Use symbolic maths instead of numerical:
https://de.mathworks.com/help/symbolic/limit.html
Best wishes
Torsten.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by