Obejrzyj poniższy film. Nie przejmuj się, jeśli nie wszystko w nim zrozumiesz. Najważniejsze jest to, aby obejrzeć ten film przed przeczytaniem tekstu. Dzięki temu poznasz sposób wymowy słownictwa zanim zobaczysz je w formie tekstowej. Następnie przeczytaj tekst i wykonaj ćwiczenia pod spodem.
Matrices
A matrix (plural matrices) is a rectangular array of numbers, symbols, or expressions, arranged in rows and columns that is treated in certain prescribed ways. One such way is to state the order of the matrix. For example, the order of the matrix below is a 2×3 matrix because there are two rows and three columns. The individual items in a matrix are called its elements or entries.
Matrices are enclosed in [ ] or ( ), and are usually named with capital letters. For example, three matrices named A, B, and C are shown below.
A matrix is often referred to by its size or dimensions: m × n indicating m rows and n columns. Matrix entries are defined first by row and then by column. For example, to locate the entry in matrix A identified as aij, we look for the entry in row i, column j. In matrix A, shown below, the entry in row 2, column 3 is a23.
Types of matrices
A square matrix is a matrix with dimensions n × n, meaning that it has the same number of rows as columns. The 3×3 matrix above is an example of a square matrix.
A row matrix is a matrix consisting of one row with dimensions 1 × n.
A column matrix is a matrix consisting of one column with dimensions m × 1.
Major operations on matrices
Matrix addition
Addition and subtraction of matrices is only possible when the matrices have the same dimensions. 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 ≤ i ≤ m and 1 ≤ j ≤ n.
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
Matrix multiplication
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.
For example, the underlined entry 2340 in the product is calculated as (2 × 1000) + (3 × 100) + (4 × 10) = 2340:
Applications of matrices
In mathematics matrices are used to represent linear transformations. For example, the rotation of vectors in three-dimensional space is a linear transformation which can be represented by a rotation matrix. The product of two transformation matrices is a matrix that represents the composition of two linear transformations. Another application of matrices is in the solution of systems of linear equations. In computer graphics programming matrices are used to represent and combine common transformations.
Słownictwo
- ( ) (bracket)
- nawias
- [ ] (square bracket)
- nawias kwadratowy
- a value given by
- wartość wyznaczona przez
- above
- powyżej
- abstract algebra
- algebra abstrakcyjna
- arranged in rows and columns
- ułożone w wiersze i kolumny
- array of numbers
- tabela liczb, tablica liczb
- capital letter
- wielka litera
- column
- kolumna
- column matrix
- macierz kolumnowa
- composition
- kompozycja, złożenie
- compute by multiplying
- obliczać przez pomnożenie
- computer graphics programming
- programowanie grafiki komputerowej
- corresponding
- odpowiadający, analogiczny
- dimension
- wymiar
- dot product
- iloczyn skalarny
- element
- element
- enclose in
- ująć w
- entry
- pozycja, element
- expression
- wyrażenie
- to identify
- identyfikować
- if and only if
- jeżeli i tylko, jeżeli (wyrażenie logiczne if and only if stanowi połączenie dwóch stwierdzeń za pomocą operatora logicznego i [koniunkcja]; całość oznacza prawdę wtedy, gdy oba zdania mają taką samą prawdziwą wartość — tak jak w bramce XNOR; dobrze ilustruje to przykład z trójkątem równoramiennym: A triangle is isosceles if and only if the triangle has two equal sides. Z tego zdania można wyciągnąć następujące wnioski: If a triangle is isosceles, then the triangle has two equal sides. oraz If a triangle has two equal sides, then the triangle is isosceles. W skrócie if and only if czasami zapisuje się w postaci iff i oznacza symbolem ⇔)
- if…then
- jeśli…to (część zdania znajdująca się bezpośrednio za if nazywa się hipotezą, a część zdania znajdująca się za then to wniosek — jest to odpowiednik polskich zdań typu: „jeśli zostanie spełniony pewien warunek… to nastąpi taki a nie inny skutek”; symbolicznie if…then oznacza się symbolem logicznym ⇒)
- linear transformation
- przekształcenie liniowe
- matrix (pl. matrices)
- macierz
- matrix product
- iloczyn macierzy
- meaning that
- co oznacza, że
- one such way is to…
- jednym ze sposobów jest…
- rotation matrix
- macierz obrotu
- rotation vector
- wektor obrotu
- row matrix
- macierz wierszowa
- row
- wiersz
- scalar
- skalar
- shown below
- pokazany poniżej
- solution of systems of linear equations
- rozwiązywanie układów równań liniowych
- square matrix
- macierz kwadratowa
- the order of a matrix (matrix order)
- stopień macierzy
- the same number of rows as columns
- taka sama liczba wierszy, co kolumn
- three-dimensional space
- przestrzeń trójwymiarowa
- to be treated in certain prescribed ways
- być traktowanym w pewien z góry określony sposób
- to calculate entrywise
- obliczać wg elementów
- to indicate
- wskazywać
- to look for sth
- szukać czegoś
- transformation matrix
- macierz przekształcenia
- underlined
- podkreślony
Ćwiczenia
1. Odpowiedz na poniższe pytania na podstawie filmu z początku lekcji.
- What is the subject of the video?
- What is a matrix?
- What do you use if you need a variable to represent a matrix?
- How many rows and columns does the matrix from the first example have?
- What transcendental number did the author use in the matrix B?
- What does the notation A[2,2]=0 mean?
- What type of equations are matrices used to represent?
- What can elements of a matrix represent in computer graphics?
- What four operations on matrices does the author describe?
- How do you add matrices?
- Can you add two arbitrary matrices or do they have to satisfy any condition?
- What is a row vector?
2. Dopasuj słowa w kolumnie A do słów w kolumnie B.
| array of | algebra |
| arranged | numbers |
| the order | linear equations |
| capital | in |
| shown | of a matrix |
| square | letters |
| abstract | transformation |
| matrix | below |
| linear | product |
| system of | matrix |
3. Odpowiedz na poniższe pytania.
- What is a matrix?
- What do you call individual items of a matrix?
- How do you denote matrices?
- What is usually used to name matrices?
- What are matrices usually referred to by?
- How do you locate entries in matrices?
- What is a square matrix?
- What is a row matrix?
- What is a column matrix?
- When is addition and subtraction of matrices possible?
- How is the sum of two matrices calculated?
- When is multiplication of two matrices possible?
- What are matrices used for in mathematics?
- What are matrices used for in computer graphics programming?
4. Napisz zdania według przykladu.
A: 2 × 3; B: 3 × 4 → If A is a 2-by-3 matrix and B is a 3-by-4 matrix, then their matrix product AB is the 2-by-4 matrix.
- A: 5 × 4; B: 4 × 7
- A: 3 × 5; B: 5 × 2
- A: 9 × 8; B: 8 × 12
- A: 11 × 17; B: 17 × 13
- A: 6 × 2; B: 2 × 7
5. Jeszcze raz wykonaj ćwiczenie 3, ale tym razem ustnie, bez patrzenia na napisane wcześniej zdania. Przećwicz to kilka razy, aż nabędziesz płynności.
6. Napisz zdania, zastępując słowo „application” słowem „is used” i wyrażeniem „you can use”, jak pokazano w przykładzie.
One of applications of matrices is solving systems of linear equations. → Matrices are used in the solution of linear equations. You can use matrices to solve linear equations.
- One of applications of matrices is representing linear transformations.
- One of applications of matrices is in computer graphics programming is representing and combining common transformations.
- One of applications of rotation matrices is representing linear transformations.
- One of applications of the product of two transformation matrices is representing the composition of two linear transformations.
- The application of matrices is storing numbers, symbols, or expressions.
- One of applications of [] and () is enclosing matrices.
7. Zmień zdania pasywne na aktywne, jak pokazano w przykładzie.
A matrix is often referred to by its size. → You can refer to a matrix by its size.
- A matrix is often referred to by its order.
- A matrix is often referred to as a n × p matrix.
- A n × n square matrix with ones on the main diagonal and zeros elsewhere is referred to as an identity matrix.
- A matrix in which all entries below the main diagonal are zero is called an upper triangular matrix.
- A matrix in which all entries above the main diagonal are zero is called a lower triangular matrix.
- A matrix in which all entries outside the main diagonal are zero is called a diagonal matrix.
- A matrix in which individual values are represented as colors can be referred to as a heat map.
- A matrix consisting of one row with dimensions 1 × n is referred to as a row matrix.
- A matrix consisting of one column with dimensions m × 1 is referred to as a column matrix.
8. Na podstawie poniższych informacji napisz zdania z użyciem wyrażenia „if and only if”, jak pokazano w przykładzie.
A triangle is equilateral ⇔ its angles all measure 60° → A triangle is equilateral if and only if all its angles measure 60°.
- a square matrix has an inverse ⇔ its determinant is not zero.
- Multiplication of two matrices is defined ⇔ the number of columns of the left matrix is the same as the number of rows of the right matrix.
- A matrix is invertible ⇔ its determinant is nonzero.
- A triangle has three equal sides ⇔ it has three equal angles.
- A number is divisible by 9 ⇔ the sum of its digits is divisible by 9.
- A real number is rational ⇔ its decimal expansion is terminating or repeating.
- A natural number is divisible by 2 ⇔ the digit in its unit’s place is either 0, 2, 4, 6, or 8.
- A natural number is divisible by 3 ⇔ the number obtained by adding its digits is divisible by 3.
9. Przetłumacz poniższe zdania na angielski.
- Jeśli trójkąt jest równoboczny, to wszystkie jego kąty mierzą po 60°. Jeśli wszystkie kąty trójkąta mierzą po 60°, to trójkąt ten jest równoboczny.
- Jeśli mnożenie dwóch macierzy jest zdefiniowane, to liczba kolumn w lewej macierzy jest taka sama, jak liczba wierszy w prawej macierzy. Jeśli liczba kolumn w lewej macierzy jest taka sama, jak liczba wierszy w prawej macierzy, to zdefiniowane jest mnożenie tych macierzy.
- Jeśli macierz jest odwracalna, to jej wyznacznik jest niezerowy. Jeśli wyznacznik macierzy jest różny od zera, to macierz ta jest odwracalna.
- Jeśli trójkąt ma trzy równe boki, to ma też trzy równe kąty. Jeśli trójkąt ma trzy równe kąty, to ma też trzy równe boki.
- Jeśli liczba jest podzielna przez 9, to suma jej cyfr jest podzielna przez 9. Jeśli suma cyfr liczby jest podzielna przez 9, to liczba ta jest podzielna przez 9.
- Jeśli liczba rzeczywista jest wymierna, to jej rozwinięcie dziesiętne jest skończone lub okresowe. Jeśli rozwinięcie dziesiętne liczby rzeczywistej jest skończone lub okresowe, to jest to liczba rzeczywista. Jeśli liczba jest rzeczywista, to jej rozwinięcie dziesiętne jest skończone lub okresowe.
- Liczba naturalna jest podzielna przez 2, jeśli na pozycji jednostek zawiera cyfrę 0, 2, 4, 6 lub 8. Jeśli na pozycji jednostek liczba naturalna zawiera cyfrę 0, 2, 4, 6 lub 8, to jest ona podzielna przez 2.
- Jeśli liczba naturalna jest podzielna przez 3, to suma wartości jej cyfr jest podzielna przez 3. Jeśli suma wartości cyfr liczby naturalnej wynosi 3, to liczba ta jest podzielna przez 3.
10. Spójrz na poniższe macierze i sformułuj zdania na temat ich mnożenia, jak pokazano w przykładzie. Potrafisz wykonać te mnożenia?
Przykład: For multiplication of the matrix A by the matrix B, the element A1,1, having the value 1, corresponds to the element B1,1, having the value 13.
11. Przeczytaj poniższe konstrukcje warunkowe na głos.
x ≥ y ⇒ x + z ≥ y + z → if x is greater than or equal to y, then x + z is greater than or equal to y + z
- x ≥ 0, y ≥ 0 ⇒ xy ≥ 0
- z ≥ 0 ⇒ z + 8 ≥ 0
- x > 0 ⇒ x + 1 > 0
- p ≤ 4 ⇒ p − 4 ≠ 4
- a ≠ 0 ⇒ a × 10 ≠ 0
- x = 3 ⇒ x + 7 = 10
- b ≥ 2 ⇒ b × 6 ≥ 12
- z ≠ 7 ⇒ z + 7 ≠ 14
- x > 4 ⇒ x + 3 > 7
- q ≤ 12 ⇒ q − 8 ≠ 5
12. Jeszcze raz odtwórz film z początku lekcji, włącz napisy angielskie i staraj się mówić razem z lektorem. Warto powtórzyć to ćwiczenie kilka razy, aż do osiągnięcia płynności.
13. Obejrzyj poniższy film i odpowiedz na pytania pod spodem.
- What is the subject of the video?
- What three sample items does the author present at the beginning?
- What is a matrix?
- What do you do with the numbers that are in front of xs and ys?
- What are constants?
- How are constants represented in a matrix?
- What is the first step in solving a system of linear equations using a matrix?
- What is the second step?
- How did she compute the value of x?
- How did she compute the value of y?
- What is the solution of the sample system of linear equations?
- Use the method described in the video to solve the following system of linear equations:

