Vetores e Espaços Vetoriais

Vetores e Espaços Vetoriais

Álgebra Linear

Os vetores são elementos fundamentais na matemática e na física, pois permitem representar grandezas que possuem não apenas um valor numérico (módulo), mas também direção e sentido. Em física, eles são usados para indicar forças, velocidades e deslocamentos, enquanto na matemática são aplicados em geometria analítica, álgebra linear e análise de sistemas lineares.

O que é um Vetor?

Em termos geométricos, um vetor é um segmento de reta orientado, caracterizado por um módulo (tamanho), uma direção e um sentido. Por exemplo, uma força aplicada em um objeto não é apenas a intensidade, mas também o ângulo e o sentido dessa força.

Matematicamente, representamos um vetor em um plano (2D) como uma matriz coluna:

\[ \vec{v} = \begin{bmatrix} x \\ y \end{bmatrix} \]

Para três dimensões (3D), o vetor é dado por:

\[ \vec{v} = \begin{bmatrix} x \\ y \\ z \end{bmatrix} \]

Módulo de um Vetor

O módulo (ou comprimento) de um vetor \(\vec{v} = \begin{bmatrix} x \\ y \end{bmatrix}\) é dado por:

\[ |\vec{v}| = \sqrt{x^2 + y^2} \]

Exemplo: Se \(\vec{v} = \begin{bmatrix} 4 \\ 3 \end{bmatrix}\), então:

\[ |\vec{v}| = \sqrt{4^2 + 3^2} = \sqrt{16 + 9} = 5 \]

Adição de Vetores

A soma de dois vetores consiste em somar suas respectivas componentes:

\[ \vec{u} + \vec{v} = \begin{bmatrix} u_x \\ u_y \end{bmatrix} + \begin{bmatrix} v_x \\ v_y \end{bmatrix} = \begin{bmatrix} u_x + v_x \\ u_y + v_y \end{bmatrix} \]

Multiplicação de Vetores por Escalar

Multiplicar um vetor por um número real \(k\) significa multiplicar cada componente desse vetor por \(k\):

\[ k \cdot \vec{v} = k \cdot \begin{bmatrix} x \\ y \end{bmatrix} = \begin{bmatrix} kx \\ ky \end{bmatrix} \]

Exemplo: Se \(\vec{v} = \begin{bmatrix} 2 \\ 5 \end{bmatrix}\) e \(k = 3\), temos:

\[ 3 \cdot \vec{v} = 3 \cdot \begin{bmatrix} 2 \\ 5 \end{bmatrix} = \begin{bmatrix} 6 \\ 15 \end{bmatrix} \]

O que é um Espaço Vetorial?

Um espaço vetorial é um conjunto de vetores que permite as operações de adição e multiplicação por escalar, obedecendo certas propriedades. Exemplos de espaços vetoriais incluem \(\mathbb{R}^2\) (plano) e \(\mathbb{R}^3\) (espaço tridimensional).

As principais propriedades de um espaço vetorial incluem:

  • Associatividade: \((\vec{u} + \vec{v}) + \vec{w} = \vec{u} + (\vec{v} + \vec{w})\)
  • Comutatividade: \(\vec{u} + \vec{v} = \vec{v} + \vec{u}\)
  • Existência do vetor nulo: \(\vec{v} + \vec{0} = \vec{v}\)
  • Existência do inverso: \(\vec{v} + (-\vec{v}) = \vec{0}\)

Aplicações dos Vetores

Os vetores são usados em diversas áreas:

  • Física: para representar forças, velocidades e acelerações.
  • Computação Gráfica: para criar transformações e animações em 2D e 3D.
  • Engenharia: no cálculo de esforços em estruturas.
  • Geometria Analítica: para descrever posições e direções em planos e espaços.

Exemplo Prático

Considere dois vetores \(\vec{u} = \begin{bmatrix} 1 \\ 2 \end{bmatrix}\) e \(\vec{v} = \begin{bmatrix} 3 \\ -1 \end{bmatrix}\). Calcule \(\vec{w} = 2 \cdot \vec{u} + \vec{v}\).

\[ 2 \cdot \vec{u} = 2 \cdot \begin{bmatrix} 1 \\ 2 \end{bmatrix} = \begin{bmatrix} 2 \\ 4 \end{bmatrix} \]
\[ \vec{w} = \begin{bmatrix} 2 \\ 4 \end{bmatrix} + \begin{bmatrix} 3 \\ -1 \end{bmatrix} = \begin{bmatrix} 5 \\ 3 \end{bmatrix} \]
Exercícios Resolvidos – Vetores e Espaços Vetoriais

Exercícios Resolvidos – Vetores e Espaços Vetoriais

Exercício 1

Calcule o módulo do vetor \(\vec{v} = \begin{bmatrix} 3 \\ 4 \end{bmatrix}\).

Ver solução
\(|\vec{v}| = \sqrt{3^2 + 4^2} = \sqrt{9 + 16} = \sqrt{25} = 5\).

Exercício 2

Determine o vetor soma \(\vec{u} + \vec{v}\), onde \(\vec{u} = \begin{bmatrix} 1 \\ 2 \end{bmatrix}\) e \(\vec{v} = \begin{bmatrix} 3 \\ -1 \end{bmatrix}\).

Ver solução
\(\vec{u} + \vec{v} = \begin{bmatrix} 1 + 3 \\ 2 + (-1) \end{bmatrix} = \begin{bmatrix} 4 \\ 1 \end{bmatrix}\).

Exercício 3

Calcule \(2 \cdot \vec{u}\), onde \(\vec{u} = \begin{bmatrix} 5 \\ -3 \end{bmatrix}\).

Ver solução
\(2 \cdot \vec{u} = 2 \cdot \begin{bmatrix} 5 \\ -3 \end{bmatrix} = \begin{bmatrix} 10 \\ -6 \end{bmatrix}\).

Exercício 4

Verifique se \(\vec{u} = \begin{bmatrix} 1 \\ 2 \end{bmatrix}\) e \(\vec{v} = \begin{bmatrix} -2 \\ -4 \end{bmatrix}\) são vetores paralelos.

Ver solução

Dois vetores são paralelos se um é múltiplo do outro. \(\vec{v} = -2 \cdot \vec{u}\). Portanto, \(\vec{u}\) e \(\vec{v}\) são paralelos.

Exercício 5

Calcule o vetor \(\vec{w} = 3 \cdot \vec{u} – \vec{v}\), onde \(\vec{u} = \begin{bmatrix} 1 \\ -2 \end{bmatrix}\) e \(\vec{v} = \begin{bmatrix} 2 \\ 3 \end{bmatrix}\).

Ver solução
\(3 \cdot \vec{u} = \begin{bmatrix} 3 \\ -6 \end{bmatrix}\), \( \vec{w} = \begin{bmatrix} 3 – 2 \\ -6 – 3 \end{bmatrix} = \begin{bmatrix} 1 \\ -9 \end{bmatrix}\).

Exercício 6

Resolva o sistema \(\begin{cases} x + y = 5 \\ 2x – y = 1 \end{cases}\).

Ver solução
Somando as duas equações: \(x + y + 2x – y = 5 + 1 \Rightarrow 3x = 6 \Rightarrow x = 2\). Substituindo em \(x + y = 5\): \(2 + y = 5 \Rightarrow y = 3\).

Exercício 7

Resolva \(\begin{cases} 3x + y = 7 \\ x – 2y = -1 \end{cases}\).

Ver solução
Isolando \(x\) da segunda equação: \(x = -1 + 2y\). Substituindo: \(3(-1 + 2y) + y = 7 \Rightarrow -3 + 6y + y = 7 \Rightarrow 7y = 10 \Rightarrow y = \frac{10}{7}\). Logo, \(x = -1 + 2 \cdot \frac{10}{7} = \frac{13}{7}\).

Exercício 8

Resolva o sistema \(\begin{cases} 2x + 3y = 6 \\ 4x – y = 5 \end{cases}\).

Ver solução
Multiplicando a primeira equação por 2: \(4x + 6y = 12\). Subtraindo da segunda: \((4x – y) – (4x + 6y) = 5 – 12 \Rightarrow -7y = -7 \Rightarrow y = 1\). Substituindo: \(2x + 3(1) = 6 \Rightarrow x = \frac{3}{2}\).

Exercício 9

Resolva pelo método de Cramer: \(\begin{cases} x + 2y = 5 \\ 3x – y = 4 \end{cases}\).

Ver solução
\(D = \begin{vmatrix} 1 & 2 \\ 3 & -1 \end{vmatrix} = -1 – 6 = -7.\) \(D_x = \begin{vmatrix} 5 & 2 \\ 4 & -1 \end{vmatrix} = -5 – 8 = -13.\) \(D_y = \begin{vmatrix} 1 & 5 \\ 3 & 4 \end{vmatrix} = 4 – 15 = -11.\) \(x = \frac{D_x}{D} = \frac{-13}{-7} = \frac{13}{7}, \quad y = \frac{D_y}{D} = \frac{-11}{-7} = \frac{11}{7}.\)

Exercício 10

Resolva usando Cramer: \(\begin{cases} 2x + y = 3 \\ x – y = 1 \end{cases}\).

Ver solução
\(D = \begin{vmatrix} 2 & 1 \\ 1 & -1 \end{vmatrix} = -2 – 1 = -3.\) \(D_x = \begin{vmatrix} 3 & 1 \\ 1 & -1 \end{vmatrix} = -3 – 1 = -4.\) \(D_y = \begin{vmatrix} 2 & 3 \\ 1 & 1 \end{vmatrix} = 2 – 3 = -1.\) \(x = \frac{-4}{-3} = \frac{4}{3}, \quad y = \frac{-1}{-3} = \frac{1}{3}.\)

📚 Livros Recomendados de Álgebra Linear

Álgebra Linear com Aplicações

Álgebra Linear com Aplicações

Comprar na Amazon
Álgebra Linear

Álgebra Linear

Comprar na Amazon
Álgebra Linear e Suas Aplicações

Álgebra Linear e Suas Aplicações

Comprar na Amazon

📚 Curso Completo de Álgebra Linear

🔵 Artigo Completo

Acesse o artigo detalhado e descubra todos os tópicos essenciais de Álgebra Linear, com explicações claras, exemplos práticos e links para conteúdos complementares.

👉 Acessar o Artigo

🔴 Playlist em Vídeo

Estude através de vídeos explicativos com passo a passo para dominar conceitos como matrizes, determinantes, vetores, transformações lineares e muito mais.

👉 Acessar Playlist

"Artigo escrito por"

Nos ajude compartilhando esse post 😉

Facebook
WhatsApp
Twitter
Pinterest

Veja também...

Rolar para cima