跳到主要内容

早稲田大学 創造理工学研究科 経営システム工学専攻 2022年8月実施 微积分

Author

思齐塾, 祭音Myyura

Description

原点(origin)から楕円 (ellipse)

x2+xy+y2=3x^2 + xy + y^2 = 3

までの最短距離(shortest distance)と最長距離(longest distance)を求めよ。

题目描述

求原点到椭圆

x2+xy+y2=3x^2+xy+y^2=3

的最短距离和最长距离。

Kai

Let x=rcosθx = r \cos\theta and y=rsinθy = r \sin\theta . Then the equation of the ellipse becomes

r2cos2θ+r2cosθsinθ+r2sin2θ=3r^2\cos^2\theta + r^2 \cos\theta \sin\theta + r^2 \sin^2\theta = 3
r2(1+cosθsinθ)=3r^2(1 + \cos\theta \sin\theta) = 3
r2(1+12sin2θ)=3r^2(1 + \frac{1}{2}\sin 2\theta) = 3
r2=31+12sin2θ=62+sin2θr^2 = \frac{3}{1 + \frac{1}{2}\sin 2\theta} = \frac{6}{2 + \sin 2\theta}

The distance from the origin is r=62+sin2θr = \sqrt{\frac{6}{2 + \sin 2\theta}} . The minimum value of 2+sin2θ2 + \sin 2\theta is 21=12 - 1 = 1 . Thus, the maximum value of rr is 61=6\sqrt{\frac{6}{1}} = \sqrt{6} . The maximum value of 2+sin2θ2 + \sin 2\theta is 2+1=32 + 1 = 3 . Thus, the minimum value of rr is 63=2\sqrt{\frac{6}{3}} = \sqrt{2} . Therefore, the shortest distance is 2\sqrt{2} and the longest distance is 6\sqrt{6} .