Adding Vectors with Head-to-Tail Addition: What Software to Use?

Click For Summary
SUMMARY

The discussion focuses on using TikZ, a LaTeX package, for drawing vectors using head-to-tail addition. Users expressed frustration with other software options like Microsoft Paint, which do not yield satisfactory results. The recommended approach involves utilizing TikZ's capabilities to create high-quality vector diagrams, with specific code snippets provided for implementation. Version 3.0 of TikZ offers an expanded arrows library, enhancing the drawing options available to users.

PREREQUISITES
  • Familiarity with LaTeX typesetting
  • Basic understanding of vector addition concepts
  • Knowledge of TikZ package for LaTeX
  • Experience with drawing libraries in LaTeX
NEXT STEPS
  • Explore TikZ documentation for advanced drawing techniques
  • Learn how to use the expanded arrows library in TikZ version 3.0
  • Research additional LaTeX packages for vector graphics
  • Practice creating complex vector diagrams using TikZ
USEFUL FOR

Students, educators, and anyone involved in teaching or learning vector mathematics who require high-quality vector illustrations in LaTeX.

Jameson
Insights Author
Gold Member
MHB
Messages
4,533
Reaction score
13
I'm currently writing a test where my students will need to add two vectors using head-to-tail addition. I don't know how to draw vectors in LaTeX and the guides I've found have been quite tedious. I also considered doing it in Microsoft Paint, but it looks terrible. Any ideas on what software to use or how best to do this in LaTeX?

I've even found sites like this and this which are helpful but not exactly what I want.
 
Physics news on Phys.org
Well it seems it is in fact easy enough to do in LaTeX. This will work nicely:
Code:
\begin{tikzpicture}
\draw[->,thick](0,0) -- (13,3);
\draw[->,thick](3,4) -- (2,-2);
\end{tikzpicture}
 
Yes, TikZ is the drawing tool I know better than others by far, so I would use it too. It helps that it produces excellent quality drawings.

Here are some other things I found helpful.

Code:
\usetikzlibrary{arrows}
\begin{tikzpicture}[>=stealth',scale=2] % changes the arrowheads and scale
\draw (1,1) -- +(30:5); % a segment at 30 degrees of length 5 starting from (1,1)
\end{tikzpicture}

Version 3.0 of TikZ has a much expanded arrows library, but I have not got to reading it yet. :(
 

Similar threads

  • · Replies 12 ·
Replies
12
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 22 ·
Replies
22
Views
4K
  • · Replies 17 ·
Replies
17
Views
2K
  • · Replies 3 ·
Replies
3
Views
4K
Replies
7
Views
13K
  • · Replies 17 ·
Replies
17
Views
2K
  • · Replies 8 ·
Replies
8
Views
4K
  • · Replies 0 ·
Replies
0
Views
6K
  • · Replies 5 ·
Replies
5
Views
2K