Using force vector to integrate work in xy-plane

Click For Summary
The discussion centers on calculating the work done by a force vector as an object moves in the xy-plane from point O to A and then to B. The force is defined as \vec F = ax^2\vec i + by\vec j, with specific values for a and b. To find the total work, the integration is performed in two segments: first along the x-direction from O to A, and then along the y-direction from A to B. The calculations yield a total work of 4 Joules, confirming the correct approach to the problem. The participants clarify the use of vector components and the significance of the path taken in the integration process.
whatdoido
Messages
48
Reaction score
2
Hello, I picked up a challenging problem (at least to me) and I'm having difficulties.

1. Homework Statement

An object moves in xy-plane from point O = (0; 0) to point A = (1 m; 0) and from there to point B = (1 m; 2 m). All this time when the object moves a force \vec F = ax2\vec i + by\vec j affects the object, where a = 3,0 N/m2 and b = 1,5 N/m2. Calculate the work done by this force in this path.

Homework Equations



W = \int_{x_0}^x F_x(x) \, dx

The Attempt at a Solution



After trying with different methods and failing, I thought the solution should be obtained by using a vector from O to B.

So I created vectors:
\vec {OA} = a(1 m - 0 m)2\vec i + b(0 m - 0 m)2\vec j = a * 1 m2\vec i
\vec {AB} = a(1 m - 1 m)2\vec i + b(2 m - 0 m)2\vec j = b * 2 m\vec j
\vec {OB} = \vec {OA} + \vec {AB} = a * 1 m2\vec i + b * 2 m\vec j = \vec s

After this I'm stuck. I think I need the dot product of \vec F * \vec s (\vec i and \vec j would disappear then) which could be integrated, but by what? dx? Or maybe somehow by dx and dy..? I found some similar problems of line integrals and vector fields, but I don't know apply those ideas to my problem if it is even possible.

There is also one other difficulty. By using the equation W = \int_{x_0}^x F_x(x) \, dx, I need to know x0 and x. x0 = 0 m, but do I use the length of |\vec s| as ending point?

Am I completely off track or what? Any hints? Thanks for reading
 
Physics news on Phys.org
It seems like you have all the pieces you need for this problem.
## W = \int_{x_0}^{x_1} F_x(x) dx = \int_{x_0}^{x_1} ax^2 +by dx ##
This equation is for the work done by moving in the x direction.

Note that the problem says the path is 1 unit in x first, then 2 units in y. So integrate the first path in x and then integrate the second path in y.

The total distance traveled is 3m, so drawing the vector OB probably won't help much.
 
  • Like
Likes whatdoido
RUber said:
It seems like you have all the pieces you need for this problem.
## W = \int_{x_0}^{x_1} F_x(x) dx = \int_{x_0}^{x_1} ax^2 +by dx ##
This equation is for the work done by moving in the x direction.

Note that the problem says the path is 1 unit in x first, then 2 units in y. So integrate the first path in x and then integrate the second path in y.

The total distance traveled is 3m, so drawing the vector OB probably won't help much.
This really cleared things up

So from O to A, x1 = 1m y = 0

W_1 = \int_{x_0}^{x_1} F_x(x) \, dx = \int_{x_0}^{x_1} ax^2 + by \, dx = \int_{x_0}^{x_1} ax^2 \, dx = \left. \frac {1}{3}ax^3\right|_{x_0}^{x_1} = 1 Nm = 1 J

AB, x = 0 y1 = 2m

W_2 = \int_{y_0}^{y_1} F_y(y) \, dy = \int_{y_0}^{y_1} ax^2 + by \, dy = \int_{y_0}^{y_1} by \, dy = \left. \frac {1}{2}by^2\right|_{y_0}^{y_1} = 3 Nm = 3 J

W_{total} = W_1 + W_2 = 4 J

That is the correct answer, thanks!

One more thing, how did \vec i and \vec j disappear? I thought it would require a dot product
 
Essentially, you did the dot product intuitively.
When you took the first path, you ended up with just the x component of F, which is exactly what you would have gotten with F dot s with s being the first path.
Similarly if you dot F with the second path, you come to the same conclusion, keeping only the y component of F.
When the paths are purely in the direction of your basis vector, the dot product does exactly what you think it should--keeps only the relevant parts.
 
Can I mark it like this? \vec i being the first path and \vec j being the second path.

\vec F_x = \vec F * \vec i = (ax2\vec i + by\vec j) * \vec i = ax2
\vec F_y = \vec F * \vec j = (ax2\vec i + by\vec j) * \vec j = by

Or is this incorrect way to think about it? Since if I create vectors for those two paths, I get \vec {AB} = \vec i and \vec {AB} = \vec 2j. But \vec {AB} * \vec F gives me a wrong answer, 2by that is
 
Last edited:
Not good. It doesn't match dimensionally either (##\vec i\;## has the dimension of length too).


With (for OA) ##\ \vec ds = \hat\imath dx\ ## you can write $$
W_{OA} = \int_O^A \vec F \cdot d\vec s = \int_0^1 \left ( ax^2 \; \hat \imath + by \; \hat \jmath \right ) \cdot \hat \imath \;dx = \\ \qquad \int_0^1 \left ( ax^2 * \hat \imath\cdot \hat \imath + by * \hat \jmath\cdot \hat \imath \right ) dx = \int_0^1 \left ( ax^2 * 1 + by * 0 \right ) dx
$$
 
BvU said:
Not good. It doesn't match dimensionally either (##\vec i\;## has the dimension of length too).With (for OA) ##\ \vec ds = \hat\imath dx\ ## you can write $$
W_{OA} = \int_O^A \vec F \cdot d\vec s = \int_0^1 \left ( ax^2 \; \hat \imath + by \; \hat \jmath \right ) \cdot \hat \imath \;dx = \\ \qquad \int_0^1 \left ( ax^2 * \hat \imath\cdot \hat \imath + by * \hat \jmath\cdot \hat \imath \right ) dx = \int_0^1 \left ( ax^2 * 1 + by * 0 \right ) dx
$$
I see, so can AB be written the same way too? ##\ d\vec s = \hat\jmath dy\ ##

Does ##\hat\imath dx\ ## and ##\hat\jmath dy\ ## just symbolize the path taken and thus the actual length is taken into account only in the integrals?
 
Right. Since ##\vec{ds}## refers to a small distance in the direction of the path. The vector component is ##\hat i## or ##\hat j## and the magnitude is the tiny step dx or dy. This gets much more complicated when your paths are not the straight lines you have in this example.
 
  • Like
Likes whatdoido
whatdoido said:
I see, so can AB be written the same way too? ##\ d\vec s = \hat\jmath dy\ ## Yes.

Does ##\hat\imath dx\ ## and ##\hat\jmath dy\ ## just symbolize the path taken and thus the actual length is taken into account only in the integrals?
The path goes from (1,0) to (1,2) and it is subdivided in small steps ##d\vec s## so that we can take the inner product ##\ \vec F\cdot\vec ds\ ## for each of those little steps and add up all the contributions.

The vector ##\Delta \vec s## that takes you from ##\vec A## to ##\vec B## is ##\vec B - \vec A##, because ##\vec B = \vec A\ + \ (\vec B - \vec A)##, so
##\Delta \vec s = (0,2)## and if we subdivide that in little steps we get ##\ d\vec s = \hat\jmath dy\ ## where y runs from 0 to 2.

It's a representation, a symbolization if you want to call it that. Not of the path, but of an infinitesimal little piece of the path. And yes, where the path begins and where it ends are the bounds of the integral.

[edit]crossed RUber's reply - but I think we all agree.
 
Last edited:
  • Like
Likes whatdoido

Similar threads

Replies
1
Views
2K
Replies
12
Views
2K
  • · Replies 29 ·
Replies
29
Views
2K
  • · Replies 25 ·
Replies
25
Views
2K
Replies
3
Views
1K
  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 16 ·
Replies
16
Views
2K
Replies
3
Views
1K
Replies
5
Views
1K