Atividades 7:

  1. 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
  2. Arquivo N02py: Encontre as inversas das matrizes no item anterior. @Code N02.py @Exec N02.py
  3. 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