How do I do this fminsearch problem?

조회 수: 13 (최근 30일)
Austin Horn
Austin Horn 2018년 10월 22일
답변: Walter Roberson 2018년 10월 22일
x^2 + 2*cos(θ) + y = α
x^2 −(3/2)*sin(θ) − y = 2.
Use the fminsearch function and the above system to find the minimum solution for α. Use initial guesses for x = 0 and y = 0. (Hint: This means solve the above equations by eliminating θ)

답변 (1개)

Walter Roberson
Walter Roberson 2018년 10월 22일
If
x^2 (3/2)*sin(θ) y = 2
then
x^2 (3/2)*sin(θ) y - x^2 + y = 2 - x^2 + y
so
-(3/2)*sin(theta) = 2 - x^2 + y
so
sin(theta) = 2/3 * (-2 + x^2 - y)
and then
theta = arcsine(2/3 * (x^2 - y - 2))
Substitute that into the first equation
x^2 + 2*cos( asin(2/3 * (x^2 - y - 2))) + y = alpha
and to minimize alpha, minimize the left hand side of that.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by