title: 【线性代数】1-1:线性组合(Linear Combinations)

toc: true

categories:

  • Mathematic
  • Linear Algebra

    date: 2017-08-28 10:44:28

    keywords:
  • Linear Combinations
  • 线性组合

Abstract: 线性组合详细说明

Keywords: Linear Combinations

列向量

上文我们简单的看了一眼核心,核心也是最简单的东西,在我国,初中高中的小盆友们就应该已经知道向量加减法了,但是美国的小朋友们可能到高中大学才接触,所以书中给出了详细的加减乘除算法,我们必须明确一点,一般说道的向量和写出来的都是列向量,就是竖着的

like this one:

[45]
\begin{bmatrix} 4\\5 \end{bmatrix}
[45​]

向量加法和乘法计算

这里简单写一下加法和乘法计算

VECTOR ADDITION:

v=[v1v2]w=[w1w2]
\textbf{v}=\begin{bmatrix} v_1\\v_2 \end{bmatrix}\\
\textbf{w}=\begin{bmatrix} w_1\\w_2 \end{bmatrix}\\
v=[v1​v2​​]w=[w1​w2​​]

add to:

v+w=[v1+w1v2+w2]
\textbf{v}+\textbf{w}=\begin{bmatrix} v_1+w_1\\v_2+w_2 \end{bmatrix}\\
v+w=[v1​+w1​v2​+w2​​]

VECTOR MULTIPLICATION:

2v=[2v12v2]−v=[−v1−v2]
2\textbf{v}=\begin{bmatrix} 2v_1\\2v_2 \end{bmatrix}\\
-\textbf{v}=\begin{bmatrix} -v_1\newline -v_2 \end{bmatrix}\\
2v=[2v1​2v2​​]−v=[−v1​−v2​​]

(写公式真累!!)

注意零向量和数字常量0的不同

线性组合

本文为节选,完整内容地址:https://www.face2ai.com/Math-Linear-Algebra-Chapter-1-1转载请标明出处

【线性代数】1-1:线性组合(Linear Combinations)的更多相关文章

  1. 【读书笔记】:MIT线性代数(1):Linear Combinations

    1. Linear Combination Two linear operations of vectors: Linear combination: 2.Geometric Explaination ...

  2. 线性代数导论 | Linear Algebra 课程

    搞统计的线性代数和概率论必须精通,最好要能锻炼出直觉,再学机器学习才会事半功倍. 线性代数只推荐Prof. Gilbert Strang的MIT课程,有视频,有教材,有习题,有考试,一套学下来基本就入 ...

  3. 【线性代数】3-5:独立性,基和维度(Independence,Basis and Dimension)

    title: [线性代数]3-5:独立性,基和维度(Independence,Basis and Dimension) categories: Mathematic Linear Algebra ke ...

  4. PRML-Chapter3 Linear Models for Regression

    Example: Polynomial Curve Fitting The goal of regression is to predict the value of one or more cont ...

  5. [线性代数] 线性子空间入門 Basic Vector Subspaces

    导语:其他集数可在[线性代数]标籤文章找到.线性子空间是一个大课题,这里先提供一个简单的入门,承接先前关于矩阵代数的讨论,期待与你的交流. Overview: Subspace definition ...

  6. [MIT 18.06 线性代数]Intordution to Vectors向量初体验

    目录 1.1. Vectors and Linear Combinations向量和线性组合 REVIEW OF THE KEY IDEAS 1.2 Lengths and Dot Products向 ...

  7. Linear Algebra lecture1 note

    Professor: Gilbert Strang Text: Introduction to Linear Algebra http://web.mit.edu/18.06   Lecture 1 ...

  8. [线性代数] 线性代数入门A Gentle Introduction

    An Overview: System of Linear Equations Basically, linear algebra solves system of linear equations ...

  9. 【读书笔记】:MIT线性代数(2):Vector Spaces and Subspaces

    Vector Space: R1, R2, R3,R4 , .... Each space Rn consists of a whole collection of vectors. R5 conta ...

随机推荐

  1. Python 运算符与数据类型

    Python 的创始人为吉多·范罗苏姆(Guido van Rossum).1989年的圣诞节期间,吉多·范罗苏姆为了在阿姆斯特丹打发时间,决心开发一个新的脚本解释程序,作为ABC语言的一种继承.Py ...

  2. 图像识别tesseract-ocr

    下载地址 https://github.com/tesseract-ocr/tesseract/wiki/Data-Files. https://github.com/tesseract-ocr/te ...

  3. Spring实战(五)Spring中条件化地创建bean

    1.@Conditional 为生成bean设置条件 Spring 4中引入了一个新的注解---@Conditional,它用在有@Bean的方法上. 如果给定条件计算结果为true,Spring会创 ...

  4. Django rest-framework框架-认证组件的简单实例

    第一版 : 自己写函数实现用户认证 #models from django.db import models #用户表 class UserInfo(models.Model): user_type_ ...

  5. pthread 编程基础

    Linux系统下的多线程遵循POSIX线程接口,称为pthread.编写Linux下的多线程程序,需要使用头文件pthread.h,连接时需要使用库libpthread.a.与vxworks上任务的概 ...

  6. Android SQLiteDatabase的使用

    package com.shawn.test; import android.content.ContentValues; import android.content.Context; import ...

  7. ORACLE数据库 自动备份 定时计划任务 windows

    疑问为什么没有输入oracle 的数据库安装目录就能直接备份呢,可能是因为oracle默认安装c盘,在docs命令直接能操作吧,不信可以使用sqlplus试试. 一共分三步: 一.建立一个.bat 批 ...

  8. MySQL cmd操作

    1.开启关闭服务 net start mysql net stio mysql 2.登陆 在CMD命令窗口敲入命令 mysql -hlocalhost -uroot -p 后按回车(注意这里的&quo ...

  9. element之input输入搜索联想框

    1. 模板代码 <el-autocomplete :minlength="2" v-model="searchName" :fetch-suggestio ...

  10. 多进程之multiprocessing模块和进程池的实现

    转载:https://www.cnblogs.com/xiaobeibei26/p/6484849.html Python多进程之multiprocessing模块和进程池的实现 1.利用multip ...