跳到主要内容

早稲田大学 創造理工学研究科 経営システム工学専攻 2021年8月実施 线性代数

Author

思齐塾, 祭音Myyura

Description

平面上の点のx座標がすべて異なるとき、2次曲線(quadratic curve) y=a0+a1x+a2x2y = a_0 + a_1x + a_2x^2 (ただし、 a0,a1,a2a_0, a_1, a_2 は定数)でこれらの3点を通るものが1つであることを示せ。

题目描述

平面上给定三个点,且它们的 xx 坐标两两不同。证明存在唯一一条形如

y=a0+a1x+a2x2y=a_0+a_1x+a_2x^2

的二次曲线通过这三个点,其中 a0,a1,a2a_0,a_1,a_2 为常数。

Kai

Let the three points be (x1,y1),(x2,y2),(x3,y3)(x_1, y_1), (x_2, y_2), (x_3, y_3) . Since x1,x2,x3x_1, x_2, x_3 are all distinct, we want to show that there exists a unique set of constants a0,a1,a2a_0, a_1, a_2 such that the quadratic curve y=a0+a1x+a2x2y = a_0 + a_1x + a_2x^2 passes through these three points. This means we have the following system of equations:

{y1=a0+a1x1+a2x12y2=a0+a1x2+a2x22y3=a0+a1x3+a2x32\begin{cases} y_1 = a_0 + a_1x_1 + a_2x_1^2 \\ y_2 = a_0 + a_1x_2 + a_2x_2^2 \\ y_3 = a_0 + a_1x_3 + a_2x_3^2 \end{cases}

This is a linear system of equations in the unknowns a0,a1,a2a_0, a_1, a_2 . We can represent this as a matrix equation Ax=bAx = b , where

A=(1x1x121x2x221x3x32),x=(a0a1a2),b=(y1y2y3)A = \begin{pmatrix} 1 & x_1 & x_1^2 \\ 1 & x_2 & x_2^2 \\ 1 & x_3 & x_3^2 \end{pmatrix}, \quad x = \begin{pmatrix} a_0 \\ a_1 \\ a_2 \end{pmatrix}, \quad b = \begin{pmatrix} y_1 \\ y_2 \\ y_3 \end{pmatrix}

The matrix AA is a Vandermonde matrix. The determinant of AA is given by

det(A)=(x2x1)(x3x1)(x3x2)\det(A) = (x_2 - x_1)(x_3 - x_1)(x_3 - x_2)

Since x1,x2,x3x_1, x_2, x_3 are all distinct, det(A)0\det(A) \neq 0 . Thus, the matrix AA is invertible, and there is a unique solution for x=A1bx = A^{-1}b . This means there is a unique set of constants a0,a1,a2a_0, a_1, a_2 such that the quadratic curve y=a0+a1x+a2x2y = a_0 + a_1x + a_2x^2 passes through the three points (x1,y1),(x2,y2),(x3,y3)(x_1, y_1), (x_2, y_2), (x_3, y_3) .