I will attempt to take a hopefully more intuititive, possibly geometric, but mathematical perspective.
First, we
define "work:"
- We call the real number that is the product of the distance and the corresponding vector between two points the work done by the vector. That is, in Physics, we define work W to be the dot product of a force F displacing an object through a displacement of s as W = F * s (* denotes "dot product").
Note that we need the "component" of the force that acts
exactly along the displacement, i.e. along the line segment connecting the two points.
Thus, we want to find the work done by
v = 2
i + 3
j (I recommend using the "unit vectors"
i,
j as vectors. For example, if we are considering 2-space, or 2-dimension,
i = [1, 0],
j = [0, 1], so
v = [2, 3], which is what we had before) along the line segment connecting
P(1, 3) and
Q(-3, 5).
It helps if you draw this out: draw
P and
Q in some arbitrary manner (you don't need to think about their placement on the
R2 (the
xy plane)), but it would help if they were not vertical and that they have some distance between them. Next, draw the vector
v extending from
P; it would help if you drew it above the line segment, going towards
Q, but this is arbitrary, as well.
Next, draw a line segment connecting the "head" or "arrow" of
v to the line segment
PQ, so that it is perpendicular. Let the angle that
v makes with
PQ (the right next to
P) be
K.
By trigonometry, we know that the cos function of
K is as follows:
cosK = adj / hyp
Now, waving my hands a bit, let
u be the vector that
PQ makes:
u = [-3 - 1, 5 - 3] = [-4, 2]. Consequently, where ||
v|| denotes the magnitude of
v (we define ||
p|| = ||[p
1, p
2]|| = \sqrt{p
12+p
22}), and
w denotes the component of
v the lies on
PQ,
cosK = ||w|| / ||v||
so,
||w|| = ||v|| cosK
Now, we know that
w has to be in the direction of
u, because we want work. Because (1 / ||
u||)
u is a unit vector (has magnitude 1, just like how we used
i,
j), and that it is clear that
w is parallel to
u (a numerical multiple of it), we see that (with some more hand waving)
w = ((||v|| cosK) / ||u||) u
We proceed as follows. The expression above is the same as multiplying 1 by it, which happens to be equal to
||u|| / ||
u||, so we get
w = ((||v|| ||u|| cosK) / ||u||2) u
A theorem of linear algebra is that (full on hand waving now)
||v|| ||u|| cosK = v * u
which imples that
w = ((v * u) / ||u||2) u
This is often call the
projection of v on u. Consequently,
w = (([2, 3] * [-4, 2]) / ((-4)2+22))[-4, 2] = -1/10[-4, 2] = [2/5, -1/5]
By defintion, then
work = W = [2/5, -1/5] * [-4, 2] = -2
A few remarks. First, not sure about the negative, haha (it seems from the comments that the negative is correct, actually). Also, this solution is actually a derivation of projections, so you wouldn't need to write this down. However, its handy in the way that if I made this understandable enough, you have no need to memorize the formula for work, but can easily derive it when need be. (Memorizing formulas can be a problem, because you can easily misapply them.) Oh, and I forgot the most important remark: you can use what we developed as a formula. That is, physically, the work done by a vector
v moving a particle from a point
P to a point
Q is calculated by the equation
W = ((v * u) / ||u||2) u
where
u represents the vector generated by
PQ.
Hopefully this helped, or at least gave you some insight into why work is what it is! (Assuming I didn't speak complete garbage, haha.)