This commit is contained in:
Miloslav Ciz 2024-08-31 14:44:45 +02:00
parent 124b9d1e7c
commit 3f374a4713
85 changed files with 2281 additions and 2272 deletions

View file

@ -29,7 +29,7 @@ ___1_|/._._._._._._._
-2 | \
-3 | _\|
-4 | "" v
-5 |
-5 |
```
NOTE: while for normal (scalar) variables we use letters such as *x*, *y* and *z*, for vector variables we usually use letters *u*, *v* and *w* and also put a small arrow above them as:
@ -70,7 +70,7 @@ Some of said **operations** with vectors include:
- **addition** (vector + vector = vector): Just like with numbers we can add vectors, i.e. for example if there are two forces acting on an object and we represent them by vectors, we can get the total force as a vector we get by adding the individual vectors. Addition is pretty straightforward, we simply add each component of both vectors, e.g. *u + v = [7 + 2, 6 - 3.5] = [9,2.5]*. Geometrically addition can be seen as drawing one vector from the other vector's endpoint (note that the [order doesn't matter](commutativity.md), i.e. *u + v = v + u*):
```
```
7 |
6 | _,
5 | __/|\u
@ -82,7 +82,7 @@ ___1_|/_...--''____/____
-2 | \ __/
-3 | _\|/
-4 | "" v
-5 |
-5 |
```