Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Project: Peter's Files
Views: 437
Visibility: Unlisted (only visible to those who know the link)
Image: ubuntu1804
1
\documentclass[11]{article}
2
\usepackage{latexsym}
3
\usepackage{amsfonts}
4
5
%% Some Useful Packages
6
\usepackage{hyperref, amsmath, amsthm, pgf, latexsym, amsfonts, graphicx, enumerate, float, amssymb}
7
8
%% Useful commands-- use the syntax \newcommand{\what you want to type}{real command}
9
\newcommand{\N}{\mathbb{N}}
10
\newcommand{\Z}{\mathbb{Z}}
11
\newcommand{\R}{\mathbb{R}}
12
\newcommand{\PP}{\mathbb{P}}
13
\newcommand{\dabba}{\partial}
14
\newcommand{\e}{\epsilon}
15
\newcommand{\bs}{\blacksquare}
16
\newcommand{\lb}{\left\lbrace}
17
\newcommand{\rb}{\right\rbrace}
18
19
20
\topmargin -1in
21
\textheight 9.5in
22
\evensidemargin 0in
23
\oddsidemargin 0in
24
\textwidth 6.5in
25
\parskip .1in
26
27
\thispagestyle{empty}
28
29
\begin{document}
30
31
\hrule
32
\vspace{.2cm}
33
34
{\Large \noindent Math 212\hfill Common Errors in Homework \# 2}
35
36
\vspace{.3cm}
37
\hrule
38
39
\begin{enumerate}
40
\item Unnecessary notation is distracting. A common example of this is introducing variables such as $A$ and $\vec{b}$ or $\vec{x}$ to label matrices and vectors when it is not needed.
41
\item If you are attempting to prove the equivalence of two expressions, do not start with the equality that you are trying to prove. Instead, begin with one side and write a chain of equalities that ends with the other side.
42
\item A matrix-vector product is written $$\begin{bmatrix}a_1&a_2\\ a_3&a_4\end{bmatrix}\begin{bmatrix}x_1\\ x_2\end{bmatrix}=\begin{bmatrix}b_1\\ b_2\end{bmatrix} \ \ \ \ \ \ \text{not} \ \ \ \ \ \ \begin{bmatrix}a_1&a_2\\ a_3&a_4\end{bmatrix}\times\begin{bmatrix}x_1\\ x_2\end{bmatrix}=\begin{bmatrix}b_1\\ b_2\end{bmatrix}.$$
43
\item Write complete sentences. Everything you write should be able to be read from top to bottom. Equations are sentences too, so make sure to use punctuation properly! Don't use symbols like $\therefore$ or $\to$ (which is not the same as $\implies$, and should not be used to direct a reader's attention) in a sentence mostly words.
44
\item Do not turn in rough drafts! Check your work and write your solutions neatly and clearly before turning them in. Make sure that every word or symbol you put on the paper is necessary.
45
\item The word `assume' is not used in place of `let' or `write'. If you are proving something about an arbitrary vector $\vec{u}\in\R^n$, you may say,
46
47
$$\text{let } \vec{u}=\begin{bmatrix}u_1\\\vdots\\ u_n\end{bmatrix}\ \ \ \ \ \ \text{or}\ \ \ \ \ \ \text{write } \vec{u}=\begin{bmatrix}u_1\\\vdots\\ u_n\end{bmatrix}.$$
48
\item It is \textbf{not} generally true that for all $a,b\in\R$ and all $\vec{x},\vec{y}\in\R^n$, $$a\vec{x}+b\vec{y}=0 \implies a=0 \text{ and }b=0.$$
49
\item It is possible that a linearly dependent set of vectors in $\R^n$ spans $\R^n$.
50
\item If it is possible to prove or explain something without using a contradiction technique, it is better to avoid doing so.
51
\item Quantify variables that you are using for your proofs in the proper place. For example, ``for all $b\in\R,\ 0\neq b$'' is not equivalent to ``$0\neq b$ for all $b\in\R$.''
52
\item If a system has a free variable, this does not imply that the system has infinitely many solutions.
53
\item \textit{Matrices} don't have solutions: \textit{systems} do.
54
\item Do not confuse sets and matrices: $$\begin{bmatrix}a& b& c\end{bmatrix}\neq \{a,b,c\}.$$
55
\item When writing the components of a \textit{vector}, they themselves are not also vectors, they are scalars, so do not have vector arrows above them. $$\begin{bmatrix}\vec{a}&\vec{b}&\vec{c}\end{bmatrix}$$ is a matrix whose columns are the vectors $\vec{a}$, $\vec{b}$, and $\vec{c}$, while
56
$$\begin{bmatrix}a&b&c\end{bmatrix}$$ is a matrix whose three entries are scalars.
57
\item Doing row reductions horizontally is better organizationally, and remember to put the row operations above the similar symbol between matrices like this: $\overset{R_1\to R_1+R_2}{\sim}$.
58
\end{enumerate}
59
60
61
\end{document}
62
63