Nipon Waiyaworn said:
My teacher told me to find the definition of matrix which is in function form, but haven't seen it.
The definition of matrix that I know is a rectangular arrangement of mn numbers, in m rows and n columns and enclosed within a bracket, but it is not right which my teacher wants.
I want to know what the definition of matrix which is in function form
help me please
You are both right. A matrix
is a rectangular arrangement of numbers. At least normally, if we consider linear transformations and the matrix elements from an area like the real numbers. (In principle, one could arrange anything this way and call it a matrix, e.g. in image computations where they are pixels). So back to
$$
A = \begin{bmatrix} a_{11} & a_{12} & \ldots & a_{1n} \\ a_{21} & a_{22} & \ldots & a_{2n} \\ \vdots & \vdots & & \vdots \\ a_{m1} & a_{m2} & \ldots & a_{mn} \end{bmatrix}
$$
Now if we have an array ## x = (\,x_1\; , \; x_2 \; , \; \ldots \; , \; x_n \,) ## we can define
$$
A \cdot x = ((Ax)_1, \ldots , (Ax)_m) = \begin{bmatrix} a_{11} & a_{12} & \ldots & a_{1n} \\ a_{21} & a_{22} & \ldots & a_{2n} \\ \vdots & \vdots & & \vdots \\ a_{i1} & a_{i2} & \ldots & a_{in} \\ \vdots & \vdots && \vdots \\ a_{m1} & a_{m2} & \ldots & a_{mn} \end{bmatrix} \cdot \begin{bmatrix}x_1 \\ x_2 \\ \vdots \\ x_j \\ \vdots \\ x_n \end{bmatrix} = \begin{bmatrix} a_{11}x_1 + a_{12}x_2+ \ldots + a_{1n}x_n \\ a_{21}x_1+ a_{22}x_2+ \ldots + a_{2n}x_n \\ \quad \quad \quad \vdots \\ a_{i1}x_1 + a_{i2}x_2 + \ldots + a_{in}x_n \\ \quad \quad \quad \vdots \\ a_{m1}x_1+ a_{m2}x_2 + \ldots a_{mn}x_n \end{bmatrix}
$$
The arrays ##x## and ##A\cdot x## are called vectors and ##A## is a linear transformation. There is a bit more what should be said here about coordinates, dimensions and components, but basically this is it. You can look it up, e.g. on
Wikipedia and the links there. But to get an impression what it's all about, choose ##n=m=2##, some integers for ##A##, and some examples for ##x##. Then you can draw pairs of ##x , Ax## as arrows in a plane coordinate system with ##x=x_1## and ##y=x_2## axis where the arrows originate in the origin and end at the point ##(x_1,x_2)##, resp. ##((Ax)_1,(Ax)_2)## and see what ##A## does to ##x=(x_1,x_2)##.