






Prepara tus exámenes y mejora tus resultados gracias a la gran cantidad de recursos disponibles en Docsity
Gana puntos ayudando a otros estudiantes o consíguelos activando un Plan Premium
Prepara tus exámenes
Prepara tus exámenes y mejora tus resultados gracias a la gran cantidad de recursos disponibles en Docsity
Prepara tus exámenes con los documentos que comparten otros estudiantes como tú en Docsity
Encuentra los documentos específicos para los exámenes de tu universidad
Estudia con lecciones y exámenes resueltos basados en los programas académicos de las mejores universidades
Responde a preguntas de exámenes reales y pon a prueba tu preparación
Consigue puntos base para descargar
Gana puntos ayudando a otros estudiantes o consíguelos activando un Plan Premium
Comunidad
Pide ayuda a la comunidad y resuelve tus dudas de estudio
Ebooks gratuitos
Descarga nuestras guías gratuitas sobre técnicas de estudio, métodos para controlar la ansiedad y consejos para la tesis preparadas por los tutores de Docsity
Documento que contiene una serie de ejercicios de cálculo matricial, incluyendo el uso de matrices, determinantes, inversas y operaciones básicas. El documento incluye el uso de funciones como 'sqrt', 'solve' y 'eigenvectors'.
Tipo: Apuntes
1 / 10
Esta página no es visible en la vista previa
¡No te pierdas las partes importantes!







reset()
use(linalg)
Warning: Identifier 'htranspose' is not exported because it already has a value.
Warning: Identifier 'transpose' is not exported because it already has a value. [
Warning: Identifier 'hilbert' is not exported because it already has a value. [us
use(plot)
Warning: Identifier 'Pyramid' is not exported because it seems to be protected. [
Warning: Identifier 'hull' is not exported because it already has a value. [use]
Warning: Identifier 'Integral' is not exported because it seems to be protected.
x:=2^3.1-ln(10)+3*sqrt(2)
float(x)
reset()
f:=sin(x)/x
sin x
x
plot(sin(x)/x,x=-12..12)
-12 -10 -8 -6 -4 -2 2 4 6 8 10 12
-0.
x
y
subs(f,x=0)
Error: Division by zero. [_power]
use(matrix)
use(matrix)
Warning: Identifier 'subs' is not exported because it already has a value. [use]
Warning: Identifier 'subsex' is not exported because it already has a value. [use
Warning: Identifier 'info' is not exported because it already has a value. [use]
A:=matrix([[3,4,14,-4],[11,7,6,9],[8,-10,0,5],[-3,3,2,15]])
AT:=transpose(A)
b:=matrix([1,0,5,-4])
A*b
A.b
L:=matrix([[1,0,0],[2,1,0],[4,-3,1]])
U:=matrix([[1,5,-2],[0,2,3],[0,0,1]])
A:=randomMatrix(20,20,Unimodular)
AT:=transpose(A)
det(A)
A:=matrix([[0,6,36,216],[0,0,6,36],[0,0,0,6],[0,0,0,0]])
reset()
use(linalg)
Warning: Identifier 'htranspose' is not exported because it already has a value.
Warning: Identifier 'transpose' is not exported because it already has a value. [
Warning: Identifier 'hilbert' is not exported because it already has a value. [us
use(matrix)
Warning: Identifier 'subs' is not exported because it already has a value. [use]
Warning: Identifier 'subsex' is not exported because it already has a value. [use
Warning: Identifier 'info' is not exported because it already has a value. [use]
use(plot)
Warning: Identifier 'Pyramid' is not exported because it seems to be protected. [
Warning: Identifier 'hull' is not exported because it already has a value. [use]
Warning: Identifier 'Integral' is not exported because it seems to be protected.
A:= matrix([[2,2,4],[0,4,4],[-2,2,6]])
eigenvalues(A);
eigenvalues(A^2);
eigenvalues(A^3);
eigenvalues(A^4)
eigenvalues(A^-1);
eigenvalues(A^-2);
eigenvalues(A^-3);
eigenvalues(A^-4)
tr(A);
det(A)
llista:=eigenvectors(A)
V:=llista[1][3][1].llista[2][3][1].llista[3][3][1]
reset()
use(linalg)
Warning: Identifier 'htranspose' is not exported because it already has a value.
Warning: Identifier 'transpose' is not exported because it already has a value. [
Warning: Identifier 'hilbert' is not exported because it already has a value. [us
A:=matrix([[0,f2,f3],[s1,0,0],[0,s2,0]])
0 f2 f
s1 0 0
0 s2 0
-charpoly(A,λ)