{"id":3683,"date":"2026-05-25T12:59:38","date_gmt":"2026-05-25T12:59:38","guid":{"rendered":"https:\/\/www.mathros.net.ua\/en\/?p=3683"},"modified":"2026-05-25T14:59:10","modified_gmt":"2026-05-25T14:59:10","slug":"eigenvalues-of-a-matrix-danilevsky-method","status":"publish","type":"post","link":"https:\/\/www.mathros.net.ua\/en\/eigenvalues-of-a-matrix-danilevsky-method.html","title":{"rendered":"Eigenvalues of a Matrix: Danilevsky Method Step by Step"},"content":{"rendered":"<p>The Danilevsky method is a convenient way to find the eigenvalues of a matrix by constructing its characteristic polynomial. Its main idea is that the original matrix is gradually transformed into a special form called the Frobenius normal form. After that, the characteristic equation can be written much more easily. So, instead of directly expanding a complicated determinant, we get a more organized algorithm.<\/p>\n<h2>Eigenvalues of a Matrix: What Problem the Method Solves<\/h2>\n<p>Suppose we are given a <a title=\"What is a square matrix\" href=\"https:\/\/www.mathros.net.ua\/en\/what-is-a-matrix.html\">square matrix<\/a><\/p>\n<p>\\[<br \/>\nA =<br \/>\n\\begin{pmatrix}<br \/>\na_{11} &amp; a_{12} &amp; \\dots &amp; a_{1n} \\\\<br \/>\na_{21} &amp; a_{22} &amp; \\dots &amp; a_{2n} \\\\<br \/>\n\\vdots &amp; \\vdots &amp; \\ddots &amp; \\vdots \\\\<br \/>\na_{n1} &amp; a_{n2} &amp; \\dots &amp; a_{nn}<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>We need to find its eigenvalues. To do this, we usually form the characteristic equation<\/p>\n<p>\\[<br \/>\n\\det(A-\\lambda\\cdot I)=0,<br \/>\n\\]<\/p>\n<p>where \\( I \\) is the identity matrix, and \\( \\lambda \\) is an unknown number.<\/p>\n<p>The roots of this equation<\/p>\n<p>\\[<br \/>\n\\lambda_1,\\lambda_2,\\dots,\\lambda_n<br \/>\n\\]<\/p>\n<p>are the eigenvalues of the matrix \\( A \\).<\/p>\n<p>However, directly expanding the determinant<\/p>\n<p>\\[<br \/>\n\\det(A-\\lambda\\cdot I)<br \/>\n\\]<\/p>\n<p>is not always convenient. If the matrix has a high order, the calculations quickly become cumbersome. That is why <a title=\"What is a numerical method\" href=\"https:\/\/en.wikipedia.org\/wiki\/Numerical_method\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">numerical methods<\/a> use approaches that help simplify the construction of the characteristic polynomial.<\/p>\n<p>The Danilevsky method works exactly in this way. First, it transforms the matrix \\( A \\) into a special form. Then, using this form, we write the characteristic equation. In other words, the method does not change the problem itself. It simply makes it more convenient for calculations.<\/p>\n<h2>Frobenius Form: What Form the Matrix Is Transformed Into<\/h2>\n<p>In the Danilevsky method, the original matrix \\( A \\) is transformed into the Frobenius normal form. It has the following form:<\/p>\n<p>\\[<br \/>\nP =<br \/>\n\\begin{pmatrix}<br \/>\np_1 &amp; p_2 &amp; p_3 &amp; \\dots &amp; p_{n-1} &amp; p_n \\\\<br \/>\n1 &amp; 0 &amp; 0 &amp; \\dots &amp; 0 &amp; 0 \\\\<br \/>\n0 &amp; 1 &amp; 0 &amp; \\dots &amp; 0 &amp; 0 \\\\<br \/>\n0 &amp; 0 &amp; 1 &amp; \\dots &amp; 0 &amp; 0 \\\\<br \/>\n\\vdots &amp; \\vdots &amp; \\vdots &amp; \\ddots &amp; \\vdots &amp; \\vdots \\\\<br \/>\n0 &amp; 0 &amp; 0 &amp; \\dots &amp; 1 &amp; 0<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>This matrix has a very important feature. Its characteristic polynomial can be easily written using the elements of the first row. That is exactly why this form is useful.<\/p>\n<p>Let us write the characteristic <a title=\"What is the determinant of a square matrix\" href=\"https:\/\/www.mathros.net.ua\/en\/determinant-of-a-matrix.html\">determinant of the matrix<\/a> \\( P \\):<\/p>\n<p>\\[<br \/>\n\\chi_P(\\lambda)=<br \/>\n\\begin{vmatrix}<br \/>\np_1-\\lambda &amp; p_2 &amp; p_3 &amp; \\dots &amp; p_n \\\\<br \/>\n1 &amp; -\\lambda &amp; 0 &amp; \\dots &amp; 0 \\\\<br \/>\n0 &amp; 1 &amp; -\\lambda &amp; \\dots &amp; 0 \\\\<br \/>\n0 &amp; 0 &amp; 1 &amp; \\dots &amp; 0 \\\\<br \/>\n\\vdots &amp; \\vdots &amp; \\vdots &amp; \\ddots &amp; \\vdots \\\\<br \/>\n0 &amp; 0 &amp; 0 &amp; \\dots &amp; -\\lambda<br \/>\n\\end{vmatrix}.<br \/>\n\\]<\/p>\n<p>After simplification, we get<\/p>\n<p>\\[<br \/>\n\\chi_P(\\lambda)<br \/>\n=<br \/>\n(-1)^n\\cdot<br \/>\n\\left(<br \/>\n\\lambda^n<br \/>\n-p_1\\cdot \\lambda^{n-1}<br \/>\n-p_2\\cdot \\lambda^{n-2}<br \/>\n-p_3\\cdot \\lambda^{n-3}<br \/>\n-\\dots<br \/>\n-p_n<br \/>\n\\right).<br \/>\n\\]<\/p>\n<p>The factor \\( (-1)^n \\) does not affect the roots of the equation. Therefore, the characteristic equation can be written as follows:<\/p>\n<p>\\[<br \/>\n\\lambda^n<br \/>\n-p_1\\cdot \\lambda^{n-1}<br \/>\n-p_2\\cdot \\lambda^{n-2}<br \/>\n-p_3\\cdot \\lambda^{n-3}<br \/>\n-\\dots<br \/>\n-p_n=0.<br \/>\n\\]<\/p>\n<p>So, after transforming the matrix \\( A \\) into Frobenius form, the coefficients of the characteristic equation are already essentially available. We can simply read them from the first row of the matrix \\( P \\).<\/p>\n<h2>Similarity Transformations: Why Eigenvalues Do Not Change<\/h2>\n<p>Now it is important to understand why we can replace the original matrix \\( A \\) with the matrix \\( P \\). After all, we are looking for the eigenvalues of the matrix \\( A \\), right?<\/p>\n<p>The Danilevsky method uses similarity transformations. A matrix \\( B \\) is called similar to a matrix \\( A \\) if it can be written in the form<\/p>\n<p>\\[<br \/>\nB=M^{-1}\\cdot A \\cdot M,<br \/>\n\\]<\/p>\n<p>where \\( M \\) is a nonsingular matrix.<\/p>\n<p>To see why the eigenvalues do not change, it is enough to check the characteristic determinant. We have<\/p>\n<p>\\[<br \/>\n\\det(B-\\lambda\\cdot I)<br \/>\n=<br \/>\n\\det(M^{-1}\\cdot A\\cdot M-\\lambda\\cdot I).<br \/>\n\\]<\/p>\n<p>Since<\/p>\n<p>\\[<br \/>\n\\lambda\\cdot I=M^{-1}\\cdot (\\lambda\\cdot I)\\cdot M,<br \/>\n\\]<\/p>\n<p>we get<\/p>\n<p>\\[<br \/>\nM^{-1}\\cdot A\\cdot M-\\lambda\\cdot I<br \/>\n=M^{-1}\\cdot A\\cdot M-M^{-1}\\cdot (\\lambda\\cdot I)\\cdot M.<br \/>\n\\]<\/p>\n<p>From this, we obtain<\/p>\n<p>\\[<br \/>\nB-\\lambda\\cdot I<br \/>\n=<br \/>\nM^{-1}\\cdot (A-\\lambda\\cdot I)\\cdot M.<br \/>\n\\]<\/p>\n<p>Therefore,<\/p>\n<p>\\[<br \/>\n\\det(B-\\lambda\\cdot I)<br \/>\n=<br \/>\n\\det\\left(M^{-1}\\cdot (A-\\lambda\\cdot I)\\cdot M\\right).<br \/>\n\\]<\/p>\n<p>Using the property of the determinant of a product of matrices, we have<\/p>\n<p>\\[<br \/>\n\\det(B-\\lambda\\cdot I)<br \/>\n=<br \/>\n\\det(M^{-1})\\cdot \\det(A-\\lambda\\cdot I)\\cdot \\det(M).<br \/>\n\\]<\/p>\n<p>But<\/p>\n<p>\\[<br \/>\n\\det(M^{-1})\\cdot \\det(M)=1.<br \/>\n\\]<\/p>\n<p>So,<\/p>\n<p>\\[<br \/>\n\\det(B-\\lambda\\cdot I)=\\det(A-\\lambda\\cdot I).<br \/>\n\\]<\/p>\n<p>This means that similar matrices have the same characteristic equations. And if the characteristic equations are the same, then their roots are also the same.<\/p>\n<p>That is why the Danilevsky method does not change the eigenvalues of a matrix. It only transforms the matrix into a form from which the characteristic polynomial can be written more conveniently.<\/p>\n<h2>Transformation Matrices: The Main Mechanism of the Danilevsky Method<\/h2>\n<p>Now let us move on to the mechanism of the method itself. How exactly is the matrix \\( A \\) gradually transformed into a Frobenius matrix?<\/p>\n<p>Denote the initial matrix as<\/p>\n<p>\\[<br \/>\nA^{(0)}=A.<br \/>\n\\]<\/p>\n<p>Next, we perform the transformations one after another:<\/p>\n<p>\\[<br \/>\nA^{(n-k)}<br \/>\n=<br \/>\nM_k^{-1}\\cdot A^{(n-k-1)}\\cdot M_k,<br \/>\n\\qquad<br \/>\nk=n-1,n-2,\\dots,1.<br \/>\n\\]<\/p>\n<p>After all transformations, we obtain<\/p>\n<p>\\[<br \/>\nP=A^{(n-1)}.<br \/>\n\\]<\/p>\n<p>Here, one indexing system is used: at each step, the value of \\( k \\) decreases from \\( n-1 \\) to \\( 1 \\). Thanks to this, the matrix is gradually transformed into Frobenius form from bottom to top.<\/p>\n<p>At the step with number \\( k \\), we work with the current matrix \\( A^{(n-k-1)} \\). To construct the matrix \\( M_k \\), we use the elements of the \\( (k+1) \\)-th row of this current matrix:<\/p>\n<p>\\[<br \/>\na_{k+1,1}^{(n-k-1)},<br \/>\na_{k+1,2}^{(n-k-1)},<br \/>\n\\dots,<br \/>\na_{k+1,n}^{(n-k-1)}.<br \/>\n\\]<\/p>\n<p>The element \\( a_{k+1,k}^{(n-k-1)} \\) is especially important. It is called the pivot element. To perform the transformation, we need \\( a_{k+1,k}^{(n-k-1)} \\neq 0 \\). If this element is equal to zero, division by zero occurs. In this case, an additional interchange of rows and the corresponding columns is performed in order to preserve the similarity transformation.<\/p>\n<p>The matrix \\( M_k \\) almost coincides with the identity matrix. Only its \\( k \\)-th row is different. Its elements are defined as follows:<\/p>\n<p>\\[<br \/>\nM_k:\\;<br \/>\n\\left\\{<br \/>\n\\begin{array}{lll}<br \/>\nm_{ij}=\\delta_{ij}, &amp; i=1,2,\\dots,n,\\; i\\neq k, &amp; j=1,2,\\dots,n,\\\\[6pt]<br \/>\nm_{kj}=-\\dfrac{a_{k+1,j}^{(n-k-1)}}{a_{k+1,k}^{(n-k-1)}}, &amp; j=1,2,\\dots,n,\\; j\\neq k, &amp; \\\\[12pt]<br \/>\nm_{kk}=\\dfrac{1}{a_{k+1,k}^{(n-k-1)}}. &amp; &amp;<br \/>\n\\end{array}<br \/>\n\\right.<br \/>\n\\]<\/p>\n<p>Here, \\( \\delta_{ij} \\) is the Kronecker delta:<\/p>\n<p>\\[<br \/>\n\\delta_{ij}=<br \/>\n\\begin{cases}<br \/>\n1, &amp; i=j, \\\\<br \/>\n0, &amp; i\\neq j.<br \/>\n\\end{cases}<br \/>\n\\]<\/p>\n<p>So, all rows of the matrix \\( M_k \\), except the \\( k \\)-th row, remain the same as in the identity matrix. The \\( k \\)-th row is changed in a special way so that, after the transformation, the required row of the current matrix takes the form of a row of the Frobenius matrix.<\/p>\n<p>The <a title=\"What is the inverse of a matrix\" href=\"http:\/\/Now let us move on to the mechanism of the method itself. How exactly is the matrix \\( A \\) gradually transformed into a Frobenius matrix? Denote the initial matrix as \\[ A^{(0)}=A. \\] Next, we perform the transformations one after another: \\[ A^{(n-k)} = M_k^{-1}\\cdot A^{(n-k-1)}\\cdot M_k, \\qquad k=n-1,n-2,\\dots,1. \\] After all transformations, we obtain \\[ P=A^{(n-1)}. \\] Here, one indexing system is used: at each step, the value of \\( k \\) decreases from \\( n-1 \\) to \\( 1 \\). Thanks to this, the matrix is gradually transformed into Frobenius form from bottom to top. At the step with number \\( k \\), we work with the current matrix \\( A^{(n-k-1)} \\). To construct the matrix \\( M_k \\), we use the elements of the \\( (k+1) \\)-th row of this current matrix: \\[ a_{k+1,1}^{(n-k-1)}, a_{k+1,2}^{(n-k-1)}, \\dots, a_{k+1,n}^{(n-k-1)}. \\] The element \\( a_{k+1,k}^{(n-k-1)} \\) is especially important. It is called the pivot element. To perform the transformation, we need \\( a_{k+1,k}^{(n-k-1)} \\neq 0 \\). If this element is equal to zero, division by zero occurs. In this case, an additional interchange of rows and the corresponding columns is performed in order to preserve the similarity transformation. The matrix \\( M_k \\) almost coincides with the identity matrix. Only its \\( k \\)-th row is different. Its elements are defined as follows: \\[ M_k:\\; \\left\\{ \\begin{array}{lll} m_{ij}=\\delta_{ij}, &amp; i=1,2,\\dots,n,\\; i\\neq k, &amp; j=1,2,\\dots,n,\\\\[6pt] m_{kj}=-\\dfrac{a_{k+1,j}^{(n-k-1)}}{a_{k+1,k}^{(n-k-1)}}, &amp; j=1,2,\\dots,n,\\; j\\neq k, &amp; \\\\[12pt] m_{kk}=\\dfrac{1}{a_{k+1,k}^{(n-k-1)}}. &amp; &amp; \\end{array} \\right. \\] Here, \\( \\delta_{ij} \\) is the Kronecker delta: \\[ \\delta_{ij}= \\begin{cases} 1, &amp; i=j, \\\\ 0, &amp; i\\neq j. \\end{cases} \\] So, all rows of the matrix \\( M_k \\), except the \\( k \\)-th row, remain the same as in the identity matrix. The \\( k \\)-th row is changed in a special way so that, after the transformation, the required row of the current matrix takes the form of a row of the Frobenius matrix. The inverse matrix \\( M_k^{-1} \\) also has a simple form. It coincides with the identity matrix in all rows except the \\( k \\)-th row: \\[ M_k^{-1}:\\; \\left\\{ \\begin{array}{lll} m_{ij}=\\delta_{ij}, &amp; i=1,2,\\dots,n,\\; i\\neq k, &amp; j=1,2,\\dots,n,\\\\[6pt] m_{kj}=a_{k+1,j}^{(n-k-1)}, &amp; j=1,2,\\dots,n. &amp; \\end{array} \\right. \\] Thus, one step of the Danilevsky method has a clear structure. First, we take the current matrix. Then, using its \\( (k+1) \\)-th row, we construct the matrices \\( M_k \\) and \\( M_k^{-1} \\). After that, we perform the similarity transformation \\[ A^{(n-k)} = M_k^{-1}\\cdot A^{(n-k-1)}\\cdot M_k. \\] As a result, the matrix becomes closer to the Frobenius normal form. The general idea of the method can be shown as follows: \\[ A \\longrightarrow P \\longrightarrow \\lambda^n -p_1\\cdot \\lambda^{n-1} -p_2\\cdot \\lambda^{n-2} -p_3\\cdot \\lambda^{n-3} -\\dots -p_n=0 \\longrightarrow \\lambda_1,\\lambda_2,\\dots,\\lambda_n. \\] So, the Danilevsky method first transforms the original matrix into Frobenius form. Then, using the first row of the obtained matrix, we write the characteristic equation. And the roots of this equation are the eigenvalues of the original matrix.\">inverse matrix<\/a> \\( M_k^{-1} \\) also has a simple form. It coincides with the identity matrix in all rows except the \\( k \\)-th row:<\/p>\n<p>\\[<br \/>\nM_k^{-1}:\\;<br \/>\n\\left\\{<br \/>\n\\begin{array}{lll}<br \/>\nm_{ij}=\\delta_{ij}, &amp; i=1,2,\\dots,n,\\; i\\neq k, &amp; j=1,2,\\dots,n,\\\\[6pt]<br \/>\nm_{kj}=a_{k+1,j}^{(n-k-1)}, &amp; j=1,2,\\dots,n. &amp;<br \/>\n\\end{array}<br \/>\n\\right.<br \/>\n\\]<\/p>\n<p>Thus, one step of the Danilevsky method has a clear structure. First, we take the current matrix. Then, using its \\( (k+1) \\)-th row, we construct the matrices \\( M_k \\) and \\( M_k^{-1} \\). After that, we perform the similarity transformation<\/p>\n<p>\\[<br \/>\nA^{(n-k)}<br \/>\n=<br \/>\nM_k^{-1}\\cdot A^{(n-k-1)}\\cdot M_k.<br \/>\n\\]<\/p>\n<p>As a result, the matrix becomes closer to the Frobenius normal form.<\/p>\n<p>The general idea of the method can be shown as follows:<\/p>\n<p>\\[<br \/>\nA<br \/>\n\\longrightarrow<br \/>\nP<br \/>\n\\longrightarrow<br \/>\n\\lambda^n<br \/>\n-p_1\\cdot \\lambda^{n-1}<br \/>\n-p_2\\cdot \\lambda^{n-2}<br \/>\n-p_3\\cdot \\lambda^{n-3}<br \/>\n-\\dots<br \/>\n-p_n=0<br \/>\n\\longrightarrow<br \/>\n\\lambda_1,\\lambda_2,\\dots,\\lambda_n.<br \/>\n\\]<\/p>\n<p>So, the Danilevsky method first transforms the original matrix into Frobenius form. Then, using the first row of the obtained matrix, we write the characteristic equation. And the roots of this equation are the eigenvalues of the original matrix.<\/p>\n<h2>Eigenvalues of a Matrix: Practical Part With Examples<\/h2>\n<p>Now let us look at how the Danilevsky method works with specific matrices. In each example, we will transform the given matrix into Frobenius form. Then, using its first row, we will write the characteristic equation. We will move step by step so that it is clear where each transformation matrix comes from.<\/p>\n<h3 class=\"example\">Example 1. Find the eigenvalues of the matrix<\/h3>\n<p>\\[<br \/>\nA=<br \/>\n\\begin{pmatrix}<br \/>\n2 &amp; 1 \\\\<br \/>\n3 &amp; 4<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>We have a \\( 2\\times2 \\) matrix, so we need to perform only one step of the Danilevsky method.<\/p>\n<p>Denote<\/p>\n<p>\\[<br \/>\nA^{(0)}=A=<br \/>\n\\begin{pmatrix}<br \/>\n2 &amp; 1 \\\\<br \/>\n3 &amp; 4<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>For a \\( 2\\times2 \\) matrix, we work with the second row. The pivot element is \\( a_{21}^{(0)}=3 \\). Since \\( a_{21}^{(0)}\\neq 0 \\), we can construct the matrices \\( M_1 \\) and \\( M_1^{-1} \\).<\/p>\n<p>The matrix \\( M_1 \\) has the form<\/p>\n<p>\\[<br \/>\nM_1=<br \/>\n\\begin{pmatrix}<br \/>\n\\dfrac{1}{a_{21}^{(0)}} &amp; -\\dfrac{a_{22}^{(0)}}{a_{21}^{(0)}} \\\\<br \/>\n0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>Substitute the values:<\/p>\n<p>\\[<br \/>\nM_1=<br \/>\n\\begin{pmatrix}<br \/>\n\\dfrac{1}{3} &amp; -\\dfrac{4}{3} \\\\<br \/>\n0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>The inverse matrix has the form<\/p>\n<p>\\[<br \/>\nM_1^{-1}=<br \/>\n\\begin{pmatrix}<br \/>\na_{21}^{(0)} &amp; a_{22}^{(0)} \\\\<br \/>\n0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>Therefore,<\/p>\n<p>\\[<br \/>\nM_1^{-1}=<br \/>\n\\begin{pmatrix}<br \/>\n3 &amp; 4 \\\\<br \/>\n0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>Now we perform the similarity transformation:<\/p>\n<p>\\[<br \/>\nA^{(1)}=M_1^{-1}\\cdot A^{(0)}\\cdot M_1.<br \/>\n\\]<\/p>\n<p>Substitute the matrices:<\/p>\n<p>\\[<br \/>\nA^{(1)}=<br \/>\n\\begin{pmatrix}<br \/>\n3 &amp; 4 \\\\<br \/>\n0 &amp; 1<br \/>\n\\end{pmatrix}<br \/>\n\\cdot<br \/>\n\\begin{pmatrix}<br \/>\n2 &amp; 1 \\\\<br \/>\n3 &amp; 4<br \/>\n\\end{pmatrix}<br \/>\n\\cdot<br \/>\n\\begin{pmatrix}<br \/>\n\\dfrac{1}{3} &amp; -\\dfrac{4}{3} \\\\<br \/>\n0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>After multiplication, we get<\/p>\n<p>\\[<br \/>\nA^{(1)}=<br \/>\n\\begin{pmatrix}<br \/>\n6 &amp; -5 \\\\<br \/>\n1 &amp; 0<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>This is already a Frobenius matrix:<\/p>\n<p>\\[<br \/>\nP=<br \/>\n\\begin{pmatrix}<br \/>\n6 &amp; -5 \\\\<br \/>\n1 &amp; 0<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>For a Frobenius matrix of order two, the characteristic equation has the form<\/p>\n<p>\\[<br \/>\n\\lambda^2-p_1\\cdot\\lambda-p_2=0.<br \/>\n\\]<\/p>\n<p>In our case,<\/p>\n<p>\\[<br \/>\np_1=6,<br \/>\n\\qquad<br \/>\np_2=-5.<br \/>\n\\]<\/p>\n<p>So,<\/p>\n<p>\\[<br \/>\n\\lambda^2-6\\cdot\\lambda+5=0.<br \/>\n\\]<\/p>\n<p>Now factor the quadratic trinomial:<\/p>\n<p>\\[<br \/>\n\\lambda^2-6\\cdot\\lambda+5=<br \/>\n(\\lambda-1)\\cdot(\\lambda-5).<br \/>\n\\]<\/p>\n<p>Therefore,<\/p>\n<p>\\[<br \/>\n(\\lambda-1)\\cdot(\\lambda-5)=0.<br \/>\n\\]<\/p>\n<p>From this, we get<\/p>\n<p>\\[<br \/>\n\\lambda_1=1,<br \/>\n\\qquad<br \/>\n\\lambda_2=5.<br \/>\n\\]<\/p>\n<h3 class=\"example\">Example 2. Find the eigenvalues of the matrix<\/h3>\n<p>\\[<br \/>\nA=<br \/>\n\\begin{pmatrix}<br \/>\n3 &amp; 0 &amp; 0 \\\\<br \/>\n1 &amp; 1 &amp; 2 \\\\<br \/>\n0 &amp; 1 &amp; 0<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>We have a \\( 3\\times3 \\) matrix. However, let us pay attention to its third row:<\/p>\n<p>\\[<br \/>\n0,\\quad 1,\\quad 0.<br \/>\n\\]<\/p>\n<p>It already has the form of the corresponding row of a Frobenius matrix. Indeed, for a \\( 3\\times3 \\) matrix, Frobenius form looks like this:<\/p>\n<p>\\[<br \/>\nP=<br \/>\n\\begin{pmatrix}<br \/>\np_1 &amp; p_2 &amp; p_3 \\\\<br \/>\n1 &amp; 0 &amp; 0 \\\\<br \/>\n0 &amp; 1 &amp; 0<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>So, the bottom row is already ready. Therefore, the step involving the construction of \\( M_2 \\) does not need to be performed. We only need to perform one step of the Danilevsky method to transform the second row into the form<\/p>\n<p>\\[<br \/>\n1,\\quad 0,\\quad 0.<br \/>\n\\]<\/p>\n<p>Denote<\/p>\n<p>\\[<br \/>\nA^{(0)}=<br \/>\n\\begin{pmatrix}<br \/>\n3 &amp; 0 &amp; 0 \\\\<br \/>\n1 &amp; 1 &amp; 2 \\\\<br \/>\n0 &amp; 1 &amp; 0<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>We work with the second row of the matrix \\( A^{(0)} \\). The pivot element is \\( a_{21}^{(0)}=1 \\). Since \\( a_{21}^{(0)}\\neq 0 \\), we can construct the matrices \\( M_1 \\) and \\( M_1^{-1} \\).<\/p>\n<p>The matrix \\( M_1 \\) differs from the identity matrix only in the first row:<\/p>\n<p>\\[<br \/>\nM_1=<br \/>\n\\begin{pmatrix}<br \/>\n\\dfrac{1}{a_{21}^{(0)}} &amp; -\\dfrac{a_{22}^{(0)}}{a_{21}^{(0)}} &amp; -\\dfrac{a_{23}^{(0)}}{a_{21}^{(0)}} \\\\<br \/>\n0 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>Substitute the values from the second row of the matrix \\( A^{(0)} \\):<\/p>\n<p>\\[<br \/>\nM_1=<br \/>\n\\begin{pmatrix}<br \/>\n\\dfrac{1}{1} &amp; -\\dfrac{1}{1} &amp; -\\dfrac{2}{1} \\\\<br \/>\n0 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>Thus,<\/p>\n<p>\\[<br \/>\nM_1=<br \/>\n\\begin{pmatrix}<br \/>\n1 &amp; -1 &amp; -2 \\\\<br \/>\n0 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>The inverse matrix has the form<\/p>\n<p>\\[<br \/>\nM_1^{-1}=<br \/>\n\\begin{pmatrix}<br \/>\na_{21}^{(0)} &amp; a_{22}^{(0)} &amp; a_{23}^{(0)} \\\\<br \/>\n0 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>Therefore,<\/p>\n<p>\\[<br \/>\nM_1^{-1}=<br \/>\n\\begin{pmatrix}<br \/>\n1 &amp; 1 &amp; 2 \\\\<br \/>\n0 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>Now we perform the similarity transformation:<\/p>\n<p>\\[<br \/>\nA^{(1)}=M_1^{-1}\\cdot A^{(0)} \\cdot M_1.<br \/>\n\\]<\/p>\n<p>Substitute the matrices:<\/p>\n<p>\\[<br \/>\nA^{(1)}=<br \/>\n\\begin{pmatrix}<br \/>\n1 &amp; 1 &amp; 2 \\\\<br \/>\n0 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}<br \/>\n\\cdot<br \/>\n\\begin{pmatrix}<br \/>\n3 &amp; 0 &amp; 0 \\\\<br \/>\n1 &amp; 1 &amp; 2 \\\\<br \/>\n0 &amp; 1 &amp; 0<br \/>\n\\end{pmatrix}<br \/>\n\\cdot<br \/>\n\\begin{pmatrix}<br \/>\n1 &amp; -1 &amp; -2 \\\\<br \/>\n0 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>After multiplication, we get<\/p>\n<p>\\[<br \/>\nA^{(1)}=<br \/>\n\\begin{pmatrix}<br \/>\n4 &amp; -1 &amp; -6 \\\\<br \/>\n1 &amp; 0 &amp; 0 \\\\<br \/>\n0 &amp; 1 &amp; 0<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>So, the matrix already has Frobenius form:<\/p>\n<p>\\[<br \/>\nP=<br \/>\n\\begin{pmatrix}<br \/>\n4 &amp; -1 &amp; -6 \\\\<br \/>\n1 &amp; 0 &amp; 0 \\\\<br \/>\n0 &amp; 1 &amp; 0<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>Now we write the characteristic equation:<\/p>\n<p>\\[<br \/>\n\\lambda^3-p_1\\cdot\\lambda^2-p_2\\cdot\\lambda-p_3=0.<br \/>\n\\]<\/p>\n<p>In our case,<\/p>\n<p>\\[<br \/>\np_1=4,<br \/>\n\\qquad<br \/>\np_2=-1,<br \/>\n\\qquad<br \/>\np_3=-6.<br \/>\n\\]<\/p>\n<p>Therefore,<\/p>\n<p>\\[<br \/>\n\\lambda^3-4\\cdot\\lambda^2+\\lambda+6=0.<br \/>\n\\]<\/p>\n<p>Now factor the polynomial:<\/p>\n<p>\\[<br \/>\n\\lambda^3-4\\cdot\\lambda^2+\\lambda+6<br \/>\n=<br \/>\n(\\lambda-3)\\cdot (\\lambda-2)\\cdot (\\lambda+1).<br \/>\n\\]<\/p>\n<p>From this, we get the eigenvalues:<\/p>\n<p>\\[<br \/>\n\\lambda_1=3,<br \/>\n\\qquad<br \/>\n\\lambda_2=2,<br \/>\n\\qquad<br \/>\n\\lambda_3=-1.<br \/>\n\\]<\/p>\n<h3 class=\"example\">Example 3. Find the eigenvalues of the matrix<\/h3>\n<p>\\[<br \/>\nA=<br \/>\n\\begin{pmatrix}<br \/>\n-4 &amp; -1 &amp; -3 \\\\<br \/>\n4 &amp; 3 &amp; 6 \\\\<br \/>\n0 &amp; -1 &amp; -2<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>We have a \\( 3\\times3 \\) matrix, so in general we need to perform two steps of the Danilevsky method.<\/p>\n<p>Denote<\/p>\n<p>\\[<br \/>\nA^{(0)}=<br \/>\n\\begin{pmatrix}<br \/>\n-4 &amp; -1 &amp; -3 \\\\<br \/>\n4 &amp; 3 &amp; 6 \\\\<br \/>\n0 &amp; -1 &amp; -2<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>First, we take \\( k=2 \\). We work with the third row of the matrix \\( A^{(0)} \\). The pivot element is \\( a_{32}^{(0)}=-1 \\). Since \\( a_{32}^{(0)}\\neq 0 \\), we can construct the matrices \\( M_2 \\) and \\( M_2^{-1} \\).<\/p>\n<p>The matrix \\( M_2 \\) has the form<\/p>\n<p>\\[<br \/>\nM_2=<br \/>\n\\begin{pmatrix}<br \/>\n1 &amp; 0 &amp; 0 \\\\<br \/>\n-\\dfrac{a_{31}^{(0)}}{a_{32}^{(0)}} &amp; \\dfrac{1}{a_{32}^{(0)}} &amp; -\\dfrac{a_{33}^{(0)}}{a_{32}^{(0)}} \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>Substitute the values:<\/p>\n<p>\\[<br \/>\nM_2=<br \/>\n\\begin{pmatrix}<br \/>\n1 &amp; 0 &amp; 0 \\\\<br \/>\n-\\dfrac{0}{-1} &amp; \\dfrac{1}{-1} &amp; -\\dfrac{-2}{-1} \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>After simplification, we have<\/p>\n<p>\\[<br \/>\nM_2=<br \/>\n\\begin{pmatrix}<br \/>\n1 &amp; 0 &amp; 0 \\\\<br \/>\n0 &amp; -1 &amp; -2 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>The inverse matrix is<\/p>\n<p>\\[<br \/>\nM_2^{-1}=<br \/>\n\\begin{pmatrix}<br \/>\n1 &amp; 0 &amp; 0 \\\\<br \/>\na_{31}^{(0)} &amp; a_{32}^{(0)} &amp; a_{33}^{(0)} \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>Therefore,<\/p>\n<p>\\[<br \/>\nM_2^{-1}=<br \/>\n\\begin{pmatrix}<br \/>\n1 &amp; 0 &amp; 0 \\\\<br \/>\n0 &amp; -1 &amp; -2 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>Now we perform the first transformation:<\/p>\n<p>\\[<br \/>\nA^{(1)}=M_2^{-1}\\cdot A^{(0)} \\cdot M_2.<br \/>\n\\]<\/p>\n<p>Substitute the matrices:<\/p>\n<p>\\[<br \/>\nA^{(1)}=<br \/>\n\\begin{pmatrix}<br \/>\n1 &amp; 0 &amp; 0 \\\\<br \/>\n0 &amp; -1 &amp; -2 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}<br \/>\n\\cdot<br \/>\n\\begin{pmatrix}<br \/>\n-4 &amp; -1 &amp; -3 \\\\<br \/>\n4 &amp; 3 &amp; 6 \\\\<br \/>\n0 &amp; -1 &amp; -2<br \/>\n\\end{pmatrix}<br \/>\n\\cdot<br \/>\n\\begin{pmatrix}<br \/>\n1 &amp; 0 &amp; 0 \\\\<br \/>\n0 &amp; -1 &amp; -2 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>After multiplication, we get<\/p>\n<p>\\[<br \/>\nA^{(1)}=<br \/>\n\\begin{pmatrix}<br \/>\n-4 &amp; 1 &amp; -1 \\\\<br \/>\n-4 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 1 &amp; 0<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>The last row already has the required form:<\/p>\n<p>\\[<br \/>\n0,\\quad 1,\\quad 0.<br \/>\n\\]<\/p>\n<p>Now we perform the second step. We take \\( k=1 \\). We work with the second row of the matrix \\( A^{(1)} \\). The pivot element is \\( a_{21}^{(1)}=-4 \\). Since \\( a_{21}^{(1)}\\neq 0 \\), we construct the matrices \\( M_1 \\) and \\( M_1^{-1} \\).<\/p>\n<p>The matrix \\( M_1 \\) has the form<\/p>\n<p>\\[<br \/>\nM_1=<br \/>\n\\begin{pmatrix}<br \/>\n\\dfrac{1}{a_{21}^{(1)}} &amp; -\\dfrac{a_{22}^{(1)}}{a_{21}^{(1)}} &amp; -\\dfrac{a_{23}^{(1)}}{a_{21}^{(1)}} \\\\<br \/>\n0 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>Substitute the values:<\/p>\n<p>\\[<br \/>\nM_1=<br \/>\n\\begin{pmatrix}<br \/>\n\\dfrac{1}{-4} &amp; -\\dfrac{1}{-4} &amp; -\\dfrac{0}{-4} \\\\<br \/>\n0 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>So,<\/p>\n<p>\\[<br \/>\nM_1=<br \/>\n\\begin{pmatrix}<br \/>\n-\\dfrac{1}{4} &amp; \\dfrac{1}{4} &amp; 0 \\\\<br \/>\n0 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>The inverse matrix is<\/p>\n<p>\\[<br \/>\nM_1^{-1}=<br \/>\n\\begin{pmatrix}<br \/>\na_{21}^{(1)} &amp; a_{22}^{(1)} &amp; a_{23}^{(1)} \\\\<br \/>\n0 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>Therefore,<\/p>\n<p>\\[<br \/>\nM_1^{-1}=<br \/>\n\\begin{pmatrix}<br \/>\n-4 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>Now we perform the second transformation:<\/p>\n<p>\\[<br \/>\nA^{(2)}=M_1^{-1}\\cdot A^{(1)} \\cdot M_1.<br \/>\n\\]<\/p>\n<p>Substitute the matrices:<\/p>\n<p>\\[<br \/>\nA^{(2)}=<br \/>\n\\begin{pmatrix}<br \/>\n-4 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}<br \/>\n\\cdot<br \/>\n\\begin{pmatrix}<br \/>\n-4 &amp; 1 &amp; -1 \\\\<br \/>\n-4 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 1 &amp; 0<br \/>\n\\end{pmatrix}<br \/>\n\\cdot<br \/>\n\\begin{pmatrix}<br \/>\n-\\dfrac{1}{4} &amp; \\dfrac{1}{4} &amp; 0 \\\\<br \/>\n0 &amp; 1 &amp; 0 \\\\<br \/>\n0 &amp; 0 &amp; 1<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>After multiplication, we have<\/p>\n<p>\\[<br \/>\nA^{(2)}=<br \/>\n\\begin{pmatrix}<br \/>\n-3 &amp; 0 &amp; 4 \\\\<br \/>\n1 &amp; 0 &amp; 0 \\\\<br \/>\n0 &amp; 1 &amp; 0<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>Now both the second and third rows coincide with the corresponding rows of the Frobenius matrix. Therefore, we have obtained the Frobenius matrix:<\/p>\n<p>\\[<br \/>\nP=<br \/>\n\\begin{pmatrix}<br \/>\n-3 &amp; 0 &amp; 4 \\\\<br \/>\n1 &amp; 0 &amp; 0 \\\\<br \/>\n0 &amp; 1 &amp; 0<br \/>\n\\end{pmatrix}.<br \/>\n\\]<\/p>\n<p>Now we write the characteristic equation:<\/p>\n<p>\\[<br \/>\n\\lambda^3-p_1\\cdot \\lambda^2-p_2\\cdot \\lambda-p_3=0.<br \/>\n\\]<\/p>\n<p>In our case,<\/p>\n<p>\\[<br \/>\np_1=-3,<br \/>\n\\qquad<br \/>\np_2=0,<br \/>\n\\qquad<br \/>\np_3=4.<br \/>\n\\]<\/p>\n<p>Therefore,<\/p>\n<p>\\[<br \/>\n\\lambda^3+3\\cdot \\lambda^2-4=0.<br \/>\n\\]<br \/>\nNow factor the polynomial:<br \/>\n\\[<br \/>\n\\lambda^3+3\\cdot \\lambda^2-4<br \/>\n=<br \/>\n(\\lambda-1)\\cdot (\\lambda+2)^2.<br \/>\n\\]<\/p>\n<p>So,<\/p>\n<p>\\[<br \/>\n(\\lambda-1)\\cdot (\\lambda+2)^2=0.<br \/>\n\\]<\/p>\n<p>From this, we get<\/p>\n<p>\\[<br \/>\n\\lambda_1=1,<br \/>\n\\qquad<br \/>\n\\lambda_2=-2,<br \/>\n\\qquad<br \/>\n\\lambda_3=-2.<br \/>\n\\]<\/p>\n<blockquote><p><strong>Note.<\/strong> We can see that one eigenvalue is repeated. This is not a mistake, because a characteristic equation may have multiple roots.<\/p><\/blockquote>\n<h2>What to Consider Next: Topics for Further Learning<\/h2>\n<p>The Danilevsky method clearly shows how the eigenvalues of a matrix can be found through matrix transformations. But this topic does not end here. To better understand the connection between different numerical approaches, it is worth exploring a few related directions.<\/p>\n<ol>\n<li><a title=\"Danilevsky method\" href=\"https:\/\/www.mathros.net.ua\/en\/\">Eigenvectors of a Matrix: A Continuation of the Danilevsky Method<\/a> \u2014 This article will show how, after finding the eigenvalues, we can move on to calculating the corresponding eigenvectors.<\/li>\n<li><a title=\"Krylov method\" href=\"https:\/\/www.mathros.net.ua\/en\/\">Krylov Method: Another Path to Eigenvalues<\/a> \u2014 This article will discuss how to build the characteristic equation using a sequence of vectors and matrix transformations.<\/li>\n<li><a title=\"Leverrier method\" href=\"https:\/\/www.mathros.net.ua\/en\/\">Leverrier Method: The Characteristic Polynomial Through Matrix Traces<\/a> \u2014 This article will explain how to find the coefficients of the characteristic polynomial using powers of a matrix.<\/li>\n<\/ol>\n<h2>Eigenvalues of a Matrix: From a Flowchart to Your Own Code<\/h2>\n<p>If you enjoy programming, try taking one more step: use a ready-made flowchart of the algorithm and implement it in your favorite programming language. It may be <em>Pascal<\/em>, <a title=\"What is Python\" href=\"https:\/\/www.mathros.net.ua\/en\/what-is-python.html\"><em>Python<\/em><\/a>, <em>C++<\/em>, <em>JavaScript<\/em>, or any other language you are interested in working with.<\/p>\n<p>This approach will help you not only repeat the Danilevsky method, but also truly see how a mathematical idea becomes a working algorithm: entering a matrix, checking the pivot element, constructing transformation matrices, obtaining the characteristic equation, and outputting the eigenvalues.<\/p>\n<p><img fetchpriority=\"high\" decoding=\"async\" class=\"size-full wp-image-3705 aligncenter\" src=\"https:\/\/www.mathros.net.ua\/en\/wp-content\/uploads\/2026\/05\/eigenvalues-of-a-matrix-danilevsky-method1.jpg\" alt=\"A flowchart of the algorithm that shows step by step how the eigenvalues of a matrix are found using the Danilevsky method\" width=\"728\" height=\"1074\" srcset=\"https:\/\/www.mathros.net.ua\/en\/wp-content\/uploads\/2026\/05\/eigenvalues-of-a-matrix-danilevsky-method1.jpg 728w, https:\/\/www.mathros.net.ua\/en\/wp-content\/uploads\/2026\/05\/eigenvalues-of-a-matrix-danilevsky-method1-203x300.jpg 203w, https:\/\/www.mathros.net.ua\/en\/wp-content\/uploads\/2026\/05\/eigenvalues-of-a-matrix-danilevsky-method1-694x1024.jpg 694w\" sizes=\"(max-width: 728px) 100vw, 728px\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The Danilevsky method is a convenient way to find the eigenvalues of a matrix by constructing its characteristic polynomial. Its<\/p>\n","protected":false},"author":1,"featured_media":3707,"comment_status":"open","ping_status":"closed","sticky":false,"template":"template-centered.php","format":"standard","meta":{"footnotes":""},"categories":[532],"tags":[454,536,533,417,134],"class_list":["post-3683","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-eigenvalues-and-eigenvectors-of","tag-characteristic-polynomial","tag-danilevsky-method","tag-eigenvalues","tag-linear-algebra","tag-numerical-methods"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.mathros.net.ua\/en\/wp-json\/wp\/v2\/posts\/3683","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.mathros.net.ua\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.mathros.net.ua\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.mathros.net.ua\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.mathros.net.ua\/en\/wp-json\/wp\/v2\/comments?post=3683"}],"version-history":[{"count":23,"href":"https:\/\/www.mathros.net.ua\/en\/wp-json\/wp\/v2\/posts\/3683\/revisions"}],"predecessor-version":[{"id":3755,"href":"https:\/\/www.mathros.net.ua\/en\/wp-json\/wp\/v2\/posts\/3683\/revisions\/3755"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.mathros.net.ua\/en\/wp-json\/wp\/v2\/media\/3707"}],"wp:attachment":[{"href":"https:\/\/www.mathros.net.ua\/en\/wp-json\/wp\/v2\/media?parent=3683"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.mathros.net.ua\/en\/wp-json\/wp\/v2\/categories?post=3683"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.mathros.net.ua\/en\/wp-json\/wp\/v2\/tags?post=3683"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}