مصفوفة

An m × n matrix: the m rows are horizontal and the n columns are vertical. Each element of a matrix is often denoted by a variable with two subscripts. عملى سبيل المثال، a2,1 represents the element at the second row and first column of the matrix.

المصفوفة Matrix هي دالة رياضية خطية تحول مجموعة بداية أي إنطلاق (مجال) إلى مجموعة وصول أونهاية (مدى). مجموعة الإنطلاق والوصول يمكن حتى تكون متكونة من أعداد سليمة أوعقدية أوأشعة من الأعداد كما يمكن حتى تكون هاتين المجموعتان متكونة بدورها من دالات رياضية أوأشعة دالات رياضية. ويمكن حتى نرمز للمصفوفة بمعقفين يخط بينهما عناصر المصفوفة كما هومبين أسفله:

حيث يمكن حتى تكون أعدادا سليمة أومركبة كما يمكن حتى تكون دالات رياضية.

نظرية المصفوفات هي فرع الرياضيات الذي يركز على دراسة المصفوفات. عمليا يعتبر أحد فروع الجبر الخطي, ثم نمى ليغطي موضوعات ذات علاقة بنظرية المخططات والجبر, والتوافقيات والإحصاء.

مثال على تحويل من مجموعة إنطلاق إلى مجموعة وصول

لنعتبر مثلا الشعاع التالي:

والمصفوفة التالية:


عملية تحويل الشعاع تتم على النحوالتالي:

إلى غير ذلك نكون قد حولنا شعاعا V ينتمي إلى إلى شعاع X ينتمي إلى ال . أما عامة إذا كانت المصفوفة تحتوي على عدد m من الأسطر وn من الأعمدة فإنها تحول مجموعة الإنطلاق المكونة من أشعة تنتمي إلى ال إلى مجموعة الوصول المتكونة من أشعة تنتمي إلى ال .
كما يمكن إعتبار المصفوفات نوعا خاصا من التنسورات ألا وهي التنسورات من الدرجة الثانية


العمليات الأساسية

ڤيديوخارجي
How to organize, add and multiply matrices - Bill Shillito, TED ED

There are a number of basic operations that can be applied to modify matrices, called matrix addition, scalar multiplication, transposition, matrix multiplication, row operations, and submatrix.

Addition, scalar multiplication, and transposition

Operation Definition Example
Addition The sum A+B of two m-by-n matrices A and B is calculated entrywise:
(A + B)i,j = Ai,j + Bi,j, where 1 ≤ im and 1 ≤ jn.

Scalar multiplication The product cA of a number c (also called a scalar in the parlance of abstract algebra) and a matrix A is computed by multiplying every entry of A by c:
(cA)i,j = c · Ai,j.

This operation is called scalar multiplication, but its result is not named "scalar product" to avoid confusion, since "scalar product" is sometimes used as a synonym for "inner product".

Transposition The transpose of an m-by-n matrix A is the n-by-m matrix AT (also denoted Atr or tA) formed by turning rows into columns and vice versa:
(AT)i,j = Aj,i.

Familiar properties of numbers extend to these operations of matrices: for example, addition is commutative, that is, the matrix sum does not depend on the order of the summands: A + B = B + A. The transpose is compatible with addition and scalar multiplication, as expressed by (cA)T = c(AT) and (A + B)T = AT + BT. Finally, (AT)T = A.

ضرب المصفوفات

يتم ضرب مصفوفة في أخرى ولكن بتواجد الشرط الآتي : حتىقد يكون عدد الأعمدة بالمصفوفة الأولى يساوي عدد الصفوف بالمصفوفة الثانية. يتم ضرب المصفوفات كالتالي : الصف الأول بالعمود الأول ثم الصف الثاني بالعمود الثاني .......إلخ،وينتج من ضرب الصف الأول بالعمود الأول العدد الأول بالمصفوفة الناتجة. ونضرب العدد الأول بالصف بالعدد الأول بالعمود.

ملف:MatrixMultiplication.png
Schematic depiction of the matrix product AB of two matrices A and B.

Multiplication of two matrices is defined if and only if the number of columns of the left matrix is the same as the number of rows of the right matrix. If A is an m-by-n matrix and B is an n-by-p matrix, then their matrix product AB is the m-by-p matrix whose entries are given by dot product of the corresponding row of A and the corresponding column of B:

where 1 ≤ im and 1 ≤ jp. For example, the underlined entry 2340 in the product is calculated as (2 × 1000) + (3 × 100) + (4 × 10) = 2340:

Matrix multiplication satisfies the rules (AB)C = A(BC) (associativity), and (A + B)C = AC + BC as well as C(A + B) = CA + CB (left and right distributivity), whenever the size of the matrices is such that the various products are defined. The product AB may be defined without BA being defined, namely if A and B are m-by-n and n-by-k matrices, respectively, and mk. Even if both products are defined, they need not be equal, that is, generally

ABBA,

that is, matrix multiplication is not commutative, in marked contrast to (rational, real, or complex) numbers whose product is independent of the order of the factors. An example of two matrices not commuting with each other is:

whereas

Besides the ordinary matrix multiplication just described, there exist other less frequently used operations on matrices that can be considered forms of multiplication, such as the Hadamard product and the Kronecker product. They arise in solving matrix equations such as the Sylvester equation.


Row operations

There are three types of row operations:

  1. row addition, that is adding a row to another.
  2. row multiplication, that is multiplying all entries of a row by a non-zero constant;
  3. row switching, that is interchanging two rows of a matrix;

These operations are used in a number of ways, including solving linear equations and finding matrix inverses.

Submatrix

A submatrix of a matrix is obtained by deleting any collection of rows and/or columns. For example, from the following 3-by-4 matrix, we can construct a 2-by-3 submatrix by removing row ثلاثة and column 2:

The minors and cofactors of a matrix are found by computing the determinant of certain submatrices.

A principal submatrix is a square submatrix obtained by removing certain rows and columns. The definition varies from author to author. According to some authors, a principal submatrix is a submatrix in which the set of row indices that remain is the same as the set of column indices that remain. Other authors define a principal submatrix as one in which the first k rows and columns, for some number k, are the ones that remain; this type of submatrix has also been called a leading principal submatrix.

المعادلات الخطية

Matrices can be used to compactly write and work with multiple linear equations, that is, systems of linear equations. For example, if A is an m-by-n matrix, x designates a column vector (that is, n×1-matrix) of n variables x1, x2, ..., xn, and b is an m×1-column vector, then the matrix equation

is equivalent to the system of linear equations

Using matrices, this can be solved more compactly than would be possible by writing out all the equations separately. If n = m and the equations are independent, this can be done by writing

where A−1 is the inverse matrix of A. If A has no inverse, solutions if any can be found using its generalized inverse.

التحولات الخطية

ملف:Area parallellogram as determinant.svg
The vectors represented by a 2-by-2 matrix correspond to the sides of a unit square transformed into a parallelogram.

Matrices and matrix multiplication reveal their essential features when related to linear transformations, also known as linear maps. A real m-by-n matrix A gives rise to a linear transformation RnRm mapping each vector x in Rn to the (matrix) product Ax, which is a vector in Rm. Conversely, each linear transformation f: RnRm arises from a unique m-by-n matrix A: explicitly, the (i, j)-entry of A is the ith coordinate of f(ej), where ej = (0,...,0,1,0,...,0) is the unit vector with 1 in the jth position and 0 elsewhere. The matrix A is said to represent the linear map f, and A is called the transformation matrix of f.

For example, the 2×2 matrix

can be viewed as the transform of the unit square into a parallelogram with vertices at (0, 0), (a, b), (a + c, b + d), and (c, d). The parallelogram pictured at the right is obtained by multiplying A with each of the column vectors , and in turn. These vectors define the vertices of the unit square.

The following table shows a number of 2-by-2 matrices with the associated linear maps of R2. The blue original is mapped to the green grid and shapes. The origin (0,0) is marked with a black point.

Horizontal shear with m = 1.25. Reflection through the vertical axis Squeeze mapping with r = 3/2 Scaling by a factor of 3/2 Rotation by π/6 = 30°
150px 125px 125px

Under the 1-to-1 correspondence between matrices and linear maps, matrix multiplication corresponds to composition of maps: if a k-by-m matrix B represents another linear map g: RmRk, then the composition gf is represented by BA since

(gf)(x) = g(f(x)) = g(Ax) = B(Ax) = (BA)x.

The last equality follows from the above-mentioned associativity of matrix multiplication.

The rank of a matrix A is the maximum number of linearly independent row vectors of the matrix, which is the same as the maximum number of linearly independent column vectors. Equivalently it is the dimension of the image of the linear map represented by A. The rank–nullity theorem states that the dimension of the kernel of a matrix plus the rank equals the number of columns of the matrix.


المصفوفة المربعة

A square matrix is a matrix with the same number of rows and columns. An n-by-n matrix is known as a square matrix of order n. Any two square matrices of the same order can be added and multiplied. The entries aii form the main diagonal of a square matrix. They lie on the imaginary line that runs from the top left corner to the bottom right corner of the matrix.

الأنواع الرئيسية

الاسم أمثلة فيها n = 3
Diagonal matrix
Lower triangular matrix
Upper triangular matrix

المصفوفة القطرية والمثلثة

If all entries of A below the main diagonal are zero, A is called an upper triangular matrix. Similarly if all entries of A above the main diagonal are zero, A is called a lower triangular matrix. If all entries outside the main diagonal are zero, A is called a diagonal matrix.

Identity matrix

The identity matrix In of size n is the n-by-n matrix in which all the elements on the main diagonal are equal to 1 and all other elements are equal to 0, for example,

It is a square matrix of order n, and also a special kind of diagonal matrix. It is called an identity matrix because multiplication with it leaves a matrix unchanged:

AIn = ImA = A for any m-by-n matrix A.

A nonzero scalar multiple of an identity matrix is called a scalar matrix. If the matrix entries come from a field, the scalar matrices form a group, under matrix multiplication, that is isomorphic to the multiplicative group of nonzero elements of the field.

Symmetric or skew-symmetric matrix

A square matrix A that is equal to its transpose, that is, A = AT, is a symmetric matrix. If instead, A is equal to the negative of its transpose, that is, A = −AT, then A is a skew-symmetric matrix. In complex matrices, symmetry is often replaced by the concept of Hermitian matrices, which satisfy A = A, where the star or asterisk denotes the conjugate transpose of the matrix, that is, the transpose of the complex conjugate of A.

By the spectral theorem, real symmetric matrices and complex Hermitian matrices have an eigenbasis; that is, every vector is expressible as a linear combination of eigenvectors. In both cases, all eigenvalues are real. This theorem can be generalized to infinite-dimensional situations related to matrices with infinitely many rows and columns, see below.

Invertible matrix and its inverse

A square matrix A is called invertible or non-singular if there exists a matrix B such that

AB = BA = In ,

where In is the n×n identity matrix with 1s on the main diagonal and 0s elsewhere. If B exists, it is unique and is called the inverse matrix of A, denoted A−1.

Definite matrix

Positive definite matrix Indefinite matrix
Q(x, y) = 1/4 x2 + y2 Q(x, y) = 1/4 x2 − 1/4 y2
150px
Points such that Q(x,y)=1
(Ellipse).
150px
Points such that Q(x,y)=1
(Hyperbola).

A symmetric n×n-matrix A is called if the associated quadratic form

fString Module Error: function rep expects a number as second parameter, received "hair"(x) = xTA x

has a positive value for every nonzero vector x in Rn. If fString Module Error: function rep expects a number as second parameter, received "hair"(x) only yields negative values then A is ; if f does produce both negative and positive values then A is . If the quadratic form f yields only non-negative values (positive or zero), the symmetric matrix is called positive-semidefinite (or if only non-positive values, then negative-semidefinite); hence the matrix is indefinite precisely when it is neither positive-semidefinite nor negative-semidefinite.

A symmetric matrix is positive-definite if and only if all its eigenvalues are positive, that is, the matrix is positive-semidefinite and it is invertible. The table at the right shows two possibilities for 2-by-2 matrices.

Allowing as input two different vectors instead yields the bilinear form associated to A:

BA (x, y) = xTAy.

المصفوفة العمودية Orthogonal

An orthogonal matrix is a square matrix with real entries whose columns and rows are orthogonal unit vectors (that is, orthonormal vectors). Equivalently, a matrix A is orthogonal if its transpose is equal to its inverse:

which entails

where In is the identity matrix of size n.

An orthogonal matrix A is necessarily invertible (with inverse A−1 = AT), unitary (A−1 = A*), and normal (A*A = AA*). The determinant of any orthogonal matrix is either +1 or −1. A special orthogonal matrix is an orthogonal matrix with determinant +1. As a linear transformation, every orthogonal matrix with determinant +1 is a pure rotation without reflection, i.e., the transformation preserves the orientation of the transformed structure, while every orthogonal matrix with determinant -1 reverses the orientation, i.e., is a composition of a pure reflection and a (possibly null) rotation. The identity matrices have determinant 1, and are pure rotations by an angle zero.

The complex analogue of an orthogonal matrix is a unitary matrix.

العمليات الرئيسية

Trace

The trace, tr(A) of a square matrix A is the sum of its diagonal entries. While matrix multiplication is not commutative as mentioned above, the trace of the product of two matrices is independent of the order of the factors:

tr(AB) = tr(BA).

This is immediate from the definition of matrix multiplication:

It follows that the trace of the product of more than two matrices is independent of cyclic permutations of the matrices, however this does not in general apply for arbitrary permutations (for example, tr(ABC) ≠ tr(BAC), in general). Also, the trace of a matrix is equal to that of its transpose, that is,

tr(A) = tr(AT).

المحددة

ملف:Determinant example.svg
A linear transformation on R2 given by the indicated matrix. The determinant of this matrix is −1, as the area of the green parallelogram at the right is 1, but the map reverses the orientation, since it turns the counterclockwise orientation of the vectors to a clockwise one.

The determinant det(A) or |A| of a square matrix A is a number encoding certain properties of the matrix. A matrix is invertible if and only if its determinant is nonzero. Its absolute value equals the area (in R2) or volume (in R3) of the image of the unit square (or cube), while its sign corresponds to the orientation of the corresponding linear map: the determinant is positive if and only if the orientation is preserved.

The determinant of 2-by-2 matrices is given by

The determinant of 3-by-3 matrices involvesستة terms (rule of Sarrus). The more lengthy Leibniz formula generalises these two formulae to all dimensions.

The determinant of a product of square matrices equals the product of their determinants:

det(AB) = det(A) · det(B).

Adding a multiple of any row to another row, or a multiple of any column to another column, does not change the determinant. Interchanging two rows or two columns affects the determinant by multiplying it by −1. Using these operations, any matrix can be transformed to a lower (or upper) triangular matrix, and for such matrices the determinant equals the product of the entries on the main diagonal; this provides a method to calculate the determinant of any matrix. Finally, the Laplace expansion expresses the determinant in terms of minors, that is, determinants of smaller matrices. This expansion can be used for a recursive definition of determinants (taking as starting case the determinant of a 1-by-1 matrix, which is its unique entry, or even the determinant of a 0-by-0 matrix, which is 1), that can be seen to be equivalent to the Leibniz formula. Determinants can be used to solve linear systems using Cramer's rule, where the division of the determinants of two related square matrices equates to the value of each of the system's variables.

Eigenvalues and eigenvectors

A number λ and a non-zero vector v satisfying

Av = λv

are called an eigenvalue and an eigenvector of A, respectively. The number λ is an eigenvalue of an n×n-matrix A if and only if A−λIn is not invertible, which is equivalent to

The polynomial pA in an indeterminate X given by evaluation the determinant det(XInA) is called the characteristic polynomial of A. It is a monic polynomial of degree n. Therefore the polynomial equation pA(λ) = 0 has at most n different solutions, that is, eigenvalues of the matrix. They may be complex even if the entries of A are real. According to the Cayley–Hamilton theorem, pA(A) = 0, that is, the result of substituting the matrix itself into its own characteristic polynomial yields the zero matrix.

انظر أيضاً

  • Algebraic multiplicity
  • Geometric multiplicity
  • Gram–Schmidt process
  • List of matrices
  • Matrix calculus
  • Matrix function
  • Periodic matrix set
  • Tensor

الهامش

  1. ^ "How to organize, add and multiply matrices - Bill Shillito". TED ED. Retrieved April 6, 2013.
  2. ^ Brown 1991, Definition I.2.1 (addition), Definition I.2.4 (scalar multiplication), and Definition I.2.33 (transpose)
  3. ^ Brown 1991, Theorem I.2.6
  4. ^ Brown 1991, Definition I.2.20
  5. ^ Brown 1991, Theorem I.2.24
  6. ^ Horn & Johnson 1985, Ch. أربعة and 5
  7. ^ Bronson (1970, p. 16)
  8. ^ Kreyszig (1972, p. 220)
  9. ^ Protter & Morrey (1970, p. 869)
  10. ^ Kreyszig (1972, pp. 241,244)
  11. ^ Schneider, Hans; Barker, George Phillip (2012), Matrices and Linear Algebra, Dover Books on Mathematics, Courier Dover Corporation, p. 251, ISBN 9780486139302, https://books.google.com/books?id=9vjBAgAAQBAJ&pg=PA251 .
  12. ^ Perlis, Sam (1991), Theory of Matrices, Dover books on advanced mathematics, Courier Dover Corporation, p. 103, ISBN 9780486668109, https://books.google.com/books?id=5_sxtcnvLhoC&pg=PA103 .
  13. ^ Anton, Howard (2010), Elementary Linear Algebra (10th ed.), John Wiley & Sons, p. 414, ISBN 9780470458211, https://books.google.com/books?id=YmcQJoFyZ5gC&pg=PA414 .
  14. ^ Horn, Roger A.; Johnson, Charles R. (2012), Matrix Analysis (2nd ed.), Cambridge University Press, p. 17, ISBN 9780521839402, https://books.google.com/books?id=5I5AYeeh0JUC&pg=PA17 .
  15. ^ Brown 1991, I.2.21 and 22
  16. ^ Greub 1975, Section III.2
  17. ^ Brown 1991, Definition II.3.3
  18. ^ Greub 1975, Section III.1
  19. ^ Brown 1991, Theorem II.3.22
  20. ^ Horn & Johnson 1985, Theorem 2.5.6
  21. ^ Brown 1991, Definition I.2.28
  22. ^ Brown 1991, Definition I.5.13
  23. ^ Horn & Johnson 1985, Chapter 7
  24. ^ Horn & Johnson 1985, Theorem 7.2.1
  25. ^ Horn & Johnson 1985, Example 4.0.6, p. 169
  26. ^ Brown 1991, Definition III.2.1
  27. ^ Brown 1991, Theorem III.2.12
  28. ^ Brown 1991, Corollary III.2.16
  29. ^ Mirsky 1990, Theorem 1.4.1
  30. ^ Brown 1991, Theorem III.3.18
  31. ^ Eigen means "own" in German and in Dutch.
  32. ^ Brown 1991, Definition III.4.1
  33. ^ Brown 1991, Definition III.4.9
  34. ^ Brown 1991, Corollary III.4.10

المراجع

  • Anton, Howard (1987), Elementary Linear Algebra (5th ed.), New York: Wiley, ISBN 0-471-84819-0 
  • Arnold, Vladimir I.; Cooke, Roger (1992), Ordinary differential equations, Berlin, DE; New York, NY: Springer-Verlag, ISBN 978-3-540-54813-3 
  • Artin, Michael (1991), Algebra, Prentice Hall, ISBN 978-0-89871-510-1 
  • Association for Computing Machinery (1979), Computer Graphics, Tata McGraw–Hill, ISBN 978-0-07-059376-3 
  • Baker, Andrew J. (2003), Matrix Groups: An Introduction to Lie Group Theory, Berlin, DE; New York, NY: Springer-Verlag, ISBN 978-1-85233-470-3 
  • Bau III, David; Trefethen, Lloyd N. (1997), Numerical linear algebra, Philadelphia, PA: Society for Industrial and Applied Mathematics, ISBN 978-0-89871-361-9 
  • Beauregard, Raymond A.; Fraleigh, John B. (1973), A First Course In Linear Algebra: with Optional Introduction to Groups, Rings, and Fields, Boston: Houghton Mifflin Co., ISBN 0-395-14017-X 
  • Bretscher, Otto (2005), Linear Algebra with Applications (3rd ed.), Prentice Hall 
  • Bronson, Richard (1970), Matrix Methods: An Introduction, New York: Academic Press 
  • Bronson, Richard (1989), Schaum's outline of theory and problems of matrix operations, New York: McGraw–Hill, ISBN 978-0-07-007978-6 
  • Brown, William C. (1991), Matrices and vector spaces, New York, NY: Marcel Dekker, ISBN 978-0-8247-8419-5 
  • Coburn, Nathaniel (1955), Vector and tensor analysis, New York, NY: Macmillan, OCLC 1029828 
  • Conrey, J. Brian (2007), Ranks of elliptic curves and random matrix theory, Cambridge University Press, ISBN 978-0-521-69964-8 
  • Fraleigh, John B. (1976), A First Course In Abstract Algebra (2nd ed.), Reading: Addison-Wesley, ISBN 0-201-01984-1 
  • Fudenberg, Drew; Tirole, Jean (1983), Game Theory, MIT Press 
  • Gilbarg, David; Trudinger, Neil S. (2001), Elliptic partial differential equations of second order (2nd ed.), Berlin, DE; New York, NY: Springer-Verlag, ISBN 978-3-540-41160-4 
  • Godsil, Chris; Royle, Gordon (2004), Algebraic Graph Theory, Graduate Texts in Mathematics, 207, Berlin, DE; New York, NY: Springer-Verlag, ISBN 978-0-387-95220-8 
  • Golub, Gene H.; Van Loan, Charles F. (1996), Matrix Computations (3rd ed.), Johns Hopkins, ISBN 978-0-8018-5414-9 
  • Greub, Werner Hildbert (1975), Linear algebra, Graduate Texts in Mathematics, Berlin, DE; New York, NY: Springer-Verlag, ISBN 978-0-387-90110-7 
  • Halmos, Paul Richard (1982), A Hilbert space problem book, Graduate Texts in Mathematics, 19 (2nd ed.), Berlin, DE; New York, NY: Springer-Verlag, ISBN 978-0-387-90685-0 
  • Horn, Roger A.; Johnson, Charles R. (1985), Matrix Analysis, Cambridge University Press, ISBN 978-0-521-38632-6 
  • Householder, Alston S. (1975), The theory of matrices in numerical analysis, New York, NY: Dover Publications 
  • Kreyszig, Erwin (1972), Advanced Engineering Mathematics (3rd ed.), New York: Wiley, ISBN 0-471-50728-8, https://archive.org/details/advancedengineer00krey .
  • Krzanowski, Wojtek J. (1988), Principles of multivariate analysis, Oxford Statistical Science Series, 3, The Clarendon Press Oxford University Press, ISBN 978-0-19-852211-9 
  • Itô, Kiyosi, ed. (1987), Encyclopedic dictionary of mathematics. Vol. I-IV (2nd ed.), MIT Press, ISBN 978-0-262-09026-1 
  • Lang, Serge (1969), Analysis II, Addison-Wesley 
  • Lang, Serge (1987a), Calculus of several variables (3rd ed.), Berlin, DE; New York, NY: Springer-Verlag, ISBN 978-0-387-96405-8, https://archive.org/details/calculusofsevera0000lang 
  • Lang, Serge (1987b), Linear algebra, Berlin, DE; New York, NY: Springer-Verlag, ISBN 978-0-387-96412-6 
  • نطقب:Lang Algebra
  • Latouche, Guy; Ramaswami, Vaidyanathan (1999), Introduction to matrix analytic methods in stochastic modeling (1st ed.), Philadelphia, PA: Society for Industrial and Applied Mathematics, ISBN 978-0-89871-425-8 
  • Manning, Christopher D.; Schütze, Hinrich (1999), Foundations of statistical natural language processing, MIT Press, ISBN 978-0-262-13360-9 
  • Mehata, K. M.; Srinivasan, S. K. (1978), Stochastic processes, New York, NY: McGraw–Hill, ISBN 978-0-07-096612-3 
  • Mirsky, Leonid (1990), An Introduction to Linear Algebra, Courier Dover Publications, ISBN 978-0-486-66434-7, https://books.google.com/?id=ULMmheb26ZcC&pg=PA1&dq=linear+algebra+determinant 
  • Nering, Evar D. (1970), Linear Algebra and Matrix Theory (2nd ed.), New York: Wiley 
  • Nocedal, Jorge; Wright, Stephen J. (2006), Numerical Optimization (2nd ed.), Berlin, DE; New York, NY: Springer-Verlag, p. 449, ISBN 978-0-387-30303-1 
  • Oualline, Steve (2003), Practical C++ programming, O'Reilly, ISBN 978-0-596-00419-4 
  • Press, William H.; Flannery, Brian P.; Teukolsky, Saul A.; Vetterling, William T. (1992), "LU Decomposition and Its Applications", Numerical Recipes in FORTRAN: The Art of Scientific Computing (2nd ed.), Cambridge University Press, pp. 34–42, Archived from the original on 2009-09-06, https://web.archive.org/web/20090906113144/http://www.mpi-hd.mpg.de/astrophysik/HEA/internal/Numerical_Recipes/f2-3.pdf 
  • Protter, Murray H.; Morrey, Jr., Charles B. (1970), College Calculus with Analytic Geometry (2nd ed.), Reading: Addison-Wesley 
  • Punnen, Abraham P.; Gutin, Gregory (2002), The traveling salesman problem and its variations, Boston, MA: Kluwer Academic Publishers, ISBN 978-1-4020-0664-7 
  • Reichl, Linda E. (2004), The transition to chaos: conservative classical systems and quantum manifestations, Berlin, DE; New York, NY: Springer-Verlag, ISBN 978-0-387-98788-0 
  • Rowen, Louis Halle (2008), Graduate Algebra: noncommutative view, Providence, RI: American Mathematical Society, ISBN 978-0-8218-4153-2 
  • Šolin, Pavel (2005), Partial Differential Equations and the Finite Element Method, Wiley-Interscience, ISBN 978-0-471-76409-0 
  • Stinson, Douglas R. (2005), Cryptography, Discrete Mathematics and its Applications, Chapman & Hall/CRC, ISBN 978-1-58488-508-5 
  • Stoer, Josef; Bulirsch, Roland (2002), Introduction to Numerical Analysis (3rd ed.), Berlin, DE; New York, NY: Springer-Verlag, ISBN 978-0-387-95452-3 
  • Ward, J. P. (1997), Quaternions and Cayley numbers, Mathematics and its Applications, 403, Dordrecht, NL: Kluwer Academic Publishers Group, doi:10.1007/978-94-011-5768-1, ISBN 978-0-7923-4513-8 
  • Wolfram, Stephen (2003), The Mathematica Book (5th ed.), Champaign, IL: Wolfram Media, ISBN 978-1-57955-022-6 

مراجع فيزياء

  • Bohm, Arno (2001), Quantum Mechanics: Foundations and Applications, Springer, ISBN 0-387-95330-2 
  • Burgess, Cliff; Moore, Guy (2007), The Standard Model. A Primer, Cambridge University Press, ISBN 0-521-86036-9 
  • Guenther, Robert D. (1990), Modern Optics, John Wiley, ISBN 0-471-60538-7 
  • Itzykson, Claude; Zuber, Jean-Bernard (1980), Quantum Field Theory, McGraw–Hill, ISBN 0-07-032071-3 
  • Riley, Kenneth F.; Hobson, Michael P.; Bence, Stephen J. (1997), Mathematical methods for physics and engineering, Cambridge University Press, ISBN 0-521-55506-X 
  • Schiff, Leonard I. (1968), Quantum Mechanics (3rd ed.), McGraw–Hill 
  • Weinberg, Steven (1995), The Quantum Theory of Fields. Volume I: Foundations, Cambridge University Press, ISBN 0-521-55001-7, https://archive.org/details/quantumtheoryoff00stev 
  • Wherrett, Brian S. (1987), Group Theory for Atoms, Molecules and Solids, Prentice–Hall International, ISBN 0-13-365461-3 
  • Zabrodin, Anton; Brezin, Édouard; Kazakov, Vladimir; Serban, Didina; Wiegmann, Paul (2006), Applications of Random Matrices in Physics (NATO Science Series II: Mathematics, Physics and Chemistry), Berlin, DE; New York, NY: Springer-Verlag, ISBN 978-1-4020-4530-1 

مراجع تاريخية

  • A. Cayley A memoir on the theory of matrices. Phil. Trans. 148 1858 17-37; Math. Papers II 475-496
  • Bôcher, Maxime (2004), Introduction to higher algebra, New York, NY: Dover Publications, ISBN 978-0-486-49570-5 , reprint of the 1907 original edition
  • Cayley, Arthur (1889), The collected mathematical papers of Arthur Cayley, I (1841–1853), Cambridge University Press, pp. 123–126, https://quod.lib.umich.edu/cgi/t/text/pageviewer-idx?c=umhistmath;cc=umhistmath;rgn=full%20text;idno=ABS3153.0001.001;didno=ABS3153.0001.001;view=image;seq=00000140 
  • Dieudonné, Jean, ed. (1978), Abrégé d'histoire des mathématiques 1700-1900, Paris, FR: Hermann 
  • Hawkins, Thomas (1975), "Cauchy and the spectral theory of matrices", Historia Mathematica 2: 1–29, doi:10.1016/0315-0860(75)90032-4, ISSN 0315-0860 
  • Knobloch, Eberhard (1994), "From Gauss to Weierstrass: determinant theory and its historical evaluations", The intersection of history and mathematics, Science Networks Historical Studies, 15, Basel, Boston, Berlin: Birkhäuser, pp. 51–66 
  • Kronecker, Leopold (1897), Hensel, Kurt, ed., Leopold Kronecker's Werke, Teubner, https://quod.lib.umich.edu/cgi/t/text/text-idx?c=umhistmath;idno=AAS8260.0002.001 
  • Mehra, Jagdish; Rechenberg, Helmut (1987), The Historical Development of Quantum Theory (1st ed.), Berlin, DE; New York, NY: Springer-Verlag, ISBN 978-0-387-96284-9 
  • Shen, Kangshen; Crossley, John N.; Lun, Anthony Wah-Cheung (1999), Nine Chapters of the Mathematical Art, Companion and Commentary (2nd ed.), Oxford University Press, ISBN 978-0-19-853936-0 
  • Weierstrass, Karl (1915), Collected works, 3, https://quod.lib.umich.edu/cgi/t/text/text-idx?c=umhistmath;idno=AAN8481.0003.001 

وصلات خارجية

هناك كتاب ، جبر خطي، في فهم الخط.


At Wikiversity, you can learn about: Matrices
Encyclopedic articles
  • نطقب:SpringerEOM
History
  • MacTutor: Matrices and determinants
  • Matrices and Linear Algebra on the Earliest Uses Pages
  • Earliest Uses of Symbols for Matrices and Vectors
Online books
  • Kaw, Autar K., Introduction to Matrix Algebra, ISBN 978-0-615-25126-4, http://autarkaw.com/books/matrixalgebra/index.html 
  • (PDF)The Matrix Cookbook, http://www.math.uwaterloo.ca/~hwolkowi//matrixcookbook.pdf, retrieved on 24 March 2014 
  • Brookes, Mike (2005), The Matrix Reference Manual, London: Imperial College, http://www.ee.ic.ac.uk/hp/staff/dmb/matrix/intro.html, retrieved onعشرة Dec 2008 
Online matrix calculators
  • matrixcalc (Matrix Calculator), https://matrixcalc.org/en/ 
  • SimplyMath (Matrix Calculator), https://simplemath.online/linear-algebra/matrix-and-vector.html 
  • Free C++ Library, https://github.com/nom-de-guerre/Matrices 
  • Matrix Calculator (DotNumerics), http://www.dotnumerics.com/MatrixCalculator/ 
  • Xiao, Gang, Matrix calculator, http://wims.unice.fr/wims/wims.cgi?module=tool/linear/matrix.en, retrieved onعشرة Dec 2008 
  • Online matrix calculator, http://www.bluebit.gr/matrix-calculator/, retrieved onعشرة Dec 2008 
  • Online matrix calculator (ZK framework), Archived from the original on 2013-05-12, https://web.archive.org/web/20130512101418/http://matrixcalc.info/MatrixZK/, retrieved on 26 Nov 2009 
  • Oehlert, Gary W.; Bingham, Christopher, MacAnova, University of Minnesota, School of Statistics, http://www.stat.umn.edu/macanova/macanova.home.html, retrieved onعشرة Dec 2008 , a freeware package for matrix algebra and statistics
  • Online matrix calculator, https://www.idomaths.com/matrix.php, retrieved on 14 Dec 2009 
  • Operation with matrices in R (determinant, track, inverse, adjoint, transpose)
  • Matrix operations widget in Wolfram|Alpha
تاريخ النشر: 2020-06-06 16:55:36
التصنيفات: Articles with short description, صفحات تحوي وصلات ملفات معطوبة, Errors reported by Module String, مصفوفات

مقالات أخرى من الموسوعة

سحابة الكلمات المفتاحية، مما يبحث عنه الزوار في كشاف:

آخر الأخبار حول العالم

أبو عبيدة على واجهة موقع ناد إسرائيلي

المصدر: RT Arabic - روسيا التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:07:22
مستوى الصحة: 84% الأهمية: 86%

أولمرت: "سيد الهراء" يتظاهر بأنه "سيد الأمن"

المصدر: RT Arabic - روسيا التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:07:14
مستوى الصحة: 88% الأهمية: 95%

باتروشيف: الغرب يحاول إثارة الأزمات في الدول غير المرغوب بها

المصدر: RT Arabic - روسيا التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:07:20
مستوى الصحة: 89% الأهمية: 87%

باتروشيف: أوكرانيا هاجمت 3 محطات نووية في روسيا

المصدر: RT Arabic - روسيا التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:07:19
مستوى الصحة: 87% الأهمية: 86%

في 24 ساعة.. الأمطار في غواتيمالا تخلف خسائر جسيمة

المصدر: الأيام 24 - المغرب التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:08:59
مستوى الصحة: 75% الأهمية: 73%

الاتحاد السعودي يعلن إقالة نونو سانتو من تدريب الفريق

المصدر: RT Arabic - روسيا التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:07:24
مستوى الصحة: 86% الأهمية: 95%

أخنوش يرفع ميزانية الدعم المالي للنقابات المهنية

المصدر: الأيام 24 - المغرب التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:08:48
مستوى الصحة: 60% الأهمية: 80%

السعودية: مسألة تطبيع العلاقات مع إسرائيل لا تزال قيد المناقشة

المصدر: RT Arabic - روسيا التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:07:21
مستوى الصحة: 94% الأهمية: 89%

صحيفة: لا عزاء لأوكرانيا سوى بالانضمام إلى الاتحاد الأوروبي

المصدر: RT Arabic - روسيا التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:07:08
مستوى الصحة: 86% الأهمية: 90%

الاتحاد السعودي يقيل المدرب “الذي فضل بنزيما على حمد الله”

المصدر: الأيام 24 - المغرب التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:08:55
مستوى الصحة: 71% الأهمية: 82%

ابنة نيمار تتعرض لمحاولة اختطاف من طرف عصابة مسلحة

المصدر: الأيام 24 - المغرب التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:08:52
مستوى الصحة: 63% الأهمية: 81%

مسؤولة: محصول الحبوب في روسيا بلغ 147 مليون طن العام الجاري

المصدر: RT Arabic - روسيا التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:07:05
مستوى الصحة: 80% الأهمية: 96%

مدير الـCIA يبحث مع هاليفي خطط "إنقاذ الأسرى" من غزة

المصدر: RT Arabic - روسيا التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:07:12
مستوى الصحة: 94% الأهمية: 97%

“القسام” تعرض مشاهد لتدمير دبابات إسرائيلة في غزة

المصدر: الأيام 24 - المغرب التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:09:03
مستوى الصحة: 72% الأهمية: 70%

انخفاض الدرجات الحرارة.. توقعات أحوال الطقس اليوم الأربعاء

المصدر: تيل كيل عربي - المغرب التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:09:49
مستوى الصحة: 52% الأهمية: 70%

الخارجية الأمريكية: بعثنا "رسالة ردع مدوية" إلى إيران

المصدر: RT Arabic - روسيا التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:07:10
مستوى الصحة: 80% الأهمية: 96%

بلينكن: سنواصل دعم أوكرانيا إلى أن تسحب روسيا قواتها

المصدر: RT Arabic - روسيا التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:07:11
مستوى الصحة: 83% الأهمية: 97%

البيت الأبيض يطلب المال لحماية الأمن النووي الأمريكي من روسيا

المصدر: RT Arabic - روسيا التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:07:26
مستوى الصحة: 86% الأهمية: 100%

باتروشيف: نظام الحد من التسلح في العالم يتعرض للانهيار

المصدر: RT Arabic - روسيا التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:07:13
مستوى الصحة: 75% الأهمية: 86%

رقم مميز للسيتي في دوري الأبطال

المصدر: RT Arabic - روسيا التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:07:23
مستوى الصحة: 78% الأهمية: 94%

مجموعة الدول السبع تبحث فرض عقوبات على "حماس"

المصدر: RT Arabic - روسيا التصنيف: سياسة
تاريخ الخبر: 2023-11-08 09:07:09
مستوى الصحة: 89% الأهمية: 90%

تحميل تطبيق المنصة العربية