필터 지우기
필터 지우기

Symbolic acos( cos(theta) ) does not return theta.

조회 수: 6 (최근 30일)
Stephen Pope
Stephen Pope 2023년 3월 31일
답변: Paul 2023년 3월 31일
While cos(acos(x)) correctly returns x, acos(cos(theta)) does not return theta.
syms theta real
assume( theta >-1 & theta < 1)
a = simplify( acos(cos(theta)) )
a = 

채택된 답변

Walter Roberson
Walter Roberson 2023년 3월 31일
syms theta real
assume( theta >-1 & theta < 1)
a = simplify( acos(cos(theta)) )
a = 
fplot(a, [-1 1])
If the identity holds then you would expect a straight line, not two lines.
But cos(-theta) = cos(theta) so cos(-1) = cos(1) and so acos(cos(-1)) = acos(cos(1)) rather than being able to distinguish -1 and 1

추가 답변 (2개)

John D'Errico
John D'Errico 2023년 3월 31일
편집: John D'Errico 2023년 3월 31일
Is it true, that acos(cos(theta)) ALWAYS returns theta? TRY AN EXAMPLE.
acos(cos(10))
ans = 2.5664
So it is not true. It works the other way of course. at least it is mathematically true.
But the range of acos is [0,pi) for real arguments, so it cannot return a number outside that interval.
fplot(@acos,[-1,1])
And so then acos(cos(theta)) is possibly best written as
abs(pi - mod(theta - pi,2*pi))
At least, that is the best I can find for an approximation.
fplot(@(theta) acos(cos(theta)),[-20,20],'r--')
hold on
fplot(@(theta) abs(pi - mod(theta - pi,2*pi)),[-20,20],'b:')
You can see the curves overlay on top of each other.
We can try syms, but simplify won't find that solution, even if I push it pretty hard, harder than what I did below:
syms T
simplify(acos(cos(T)),'steps',10,'all',true)
ans = 
Anyway, the point is, MATLAB will not return the result you expect there, because it is not true.

Paul
Paul 2023년 3월 31일
simplify does provide an option that returns theta:
syms theta real
assume( theta >-1 & theta < 1)
a = simplify( acos(cos(theta)),'IgnoreAnalyticConstraints',true)
a = 
θ

카테고리

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

태그

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by