Atividades 7:
- Arquivo N01.py: Representa em Python as matrices como Python lists of lists:
@Latex \underline{\underline{\textbf{A}}}_0=\left(\begin{array}{cccc}1& 1& 1& 1\\1&-1& 1&-1\\ 1& 1&-1&-1\\-1& 1& 1&-1\\\end{array}\right),
@Latex \underline{\underline{\textbf{A}}}_1=\left(\begin{array}{cccc}1& 2& 4& 8\\1&-1& 1&-1\\1&-2& 4&-8\\1& 1& 1& 1\\\end{array}\right),
@Latex \underline{\underline{\textbf{A}}}_2=\left(\begin{array}{cccc}1& 1& 1& 1\\1&-1& 1&-1\\1& 2& 4& 8\\1& 3& 9&27\\ \end{array}\right),
@Latex \underline{\underline{\textbf{A}}}_3=\left(\begin{array}{cccc}1& 1& 1& 1\\1& 2& 4& 8\\1& 3& 9&27\\1& 4&16&64\\\end{array}\right),
@Code N01.py
-
Arquivo N02py: Encontre as inversas das matrizes no item anterior.
@Code N02.py
@Exec N02.py
-
Arquivo N03py: Gere matrices de Vandermonte regulares de ordem 5,6,7,8,9 e 10
e encontre suas inversas.
@Code N03.py
@Exec N03.py