【线性代数】1-1:线性组合(Linear Combinations)
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=[v1v2]w=[w1w2]
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+w1v2+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=[2v12v2]−v=[−v1−v2]
(写公式真累!!)
注意零向量和数字常量0的不同
线性组合
本文为节选,完整内容地址:https://www.face2ai.com/Math-Linear-Algebra-Chapter-1-1转载请标明出处
【线性代数】1-1:线性组合(Linear Combinations)的更多相关文章
- 【读书笔记】:MIT线性代数(1):Linear Combinations
1. Linear Combination Two linear operations of vectors: Linear combination: 2.Geometric Explaination ...
- 线性代数导论 | Linear Algebra 课程
搞统计的线性代数和概率论必须精通,最好要能锻炼出直觉,再学机器学习才会事半功倍. 线性代数只推荐Prof. Gilbert Strang的MIT课程,有视频,有教材,有习题,有考试,一套学下来基本就入 ...
- 【线性代数】3-5:独立性,基和维度(Independence,Basis and Dimension)
title: [线性代数]3-5:独立性,基和维度(Independence,Basis and Dimension) categories: Mathematic Linear Algebra ke ...
- PRML-Chapter3 Linear Models for Regression
Example: Polynomial Curve Fitting The goal of regression is to predict the value of one or more cont ...
- [线性代数] 线性子空间入門 Basic Vector Subspaces
导语:其他集数可在[线性代数]标籤文章找到.线性子空间是一个大课题,这里先提供一个简单的入门,承接先前关于矩阵代数的讨论,期待与你的交流. Overview: Subspace definition ...
- [MIT 18.06 线性代数]Intordution to Vectors向量初体验
目录 1.1. Vectors and Linear Combinations向量和线性组合 REVIEW OF THE KEY IDEAS 1.2 Lengths and Dot Products向 ...
- Linear Algebra lecture1 note
Professor: Gilbert Strang Text: Introduction to Linear Algebra http://web.mit.edu/18.06 Lecture 1 ...
- [线性代数] 线性代数入门A Gentle Introduction
An Overview: System of Linear Equations Basically, linear algebra solves system of linear equations ...
- 【读书笔记】:MIT线性代数(2):Vector Spaces and Subspaces
Vector Space: R1, R2, R3,R4 , .... Each space Rn consists of a whole collection of vectors. R5 conta ...
随机推荐
- win10使用vnc远程到Ubuntu 19.04
主要参考:https://www.cyberciti.biz/faq/install-and-configure-tigervnc-server-on-ubuntu-18-04/ https://ww ...
- 【背包问题】PACKING
题目描述 It was bound to happen. Modernisation has reached the North Pole. Faced with escalating costs ...
- 怎样获取Cookie
使用 document.cookie 获取; document.cookie
- Spring mvc 参数半丁
http://blog.csdn.net/eson_15/article/details/51718633 众所周知,springmvc是用来处理页面的一些请求,然后将数据再通过视图返回给用户的,前面 ...
- SpringBoot下实现MongoDB字段类型转换器
1 目的 MongoDB Java String LocalDateTime 2 实现 先定义实体类 @Data // lombok @Accessors(chain = true) @Documen ...
- thinkphp 4.8 漏洞测试
首先要部署环境 这里利用docker的方便部署性,来直接找个现成的 git clone https://github.com/vulnspy/thinkphp-5.1.29.git 下载安装后, ...
- IOS 改变UISearchBar的背景色
之前网上提供的方法试了很多种 都不能很好的去掉背景色 ,修改背景色方法如下: searchbar.barStyle = UIBarStyleBlackTranslucent; searchbar. ...
- 5.AOP配置与应用(annotation的方式)
步骤: a)在beans.xml文件中加上对应的xsd文件 spring-aop.xsd b)加上<aop:aspectj-autoproxy>,使用aspectj来完成aop <! ...
- 前端基础(十):Bootstrap Switch 选择框开关控制
简介 Bootstrap Switch是一款轻量级插件,可以给选择框设置类似于开关的样式 它是依赖于Bootstrap的一款插件 下载 下载地址 在线引用 导入 因为它是依赖于Bootstrap的一款 ...
- 看一下我学习linux的过程
学习Linux的最佳方法是将它用于日常工作. 阅读Linux书籍,观看Linux视频不仅仅是足够的. 学习Linux没有捷径可走. 你不可能在一夜之间在Linux中掌握. 这需要时间和持久性. 刚刚潜 ...
