Calculating K in the XYZ Space: A Homework Challenge

In summary, K in the XYZ Space is a constant used to represent the distance between two points in three-dimensional space. It is calculated using the distance formula, which takes into account the coordinates of the two points. Its significance lies in its use in various fields such as physics and engineering, but it does have limitations, such as only representing distance and assuming a straight line path. K cannot be negative, as it always represents a positive value.
  • #1
particlemania
21
0

Homework Statement


A particle of mass 1kg is projected in XYZ space, where Gravity (g=10m/s2) acts in -[tex]\hat{k}[/tex] direction. The initial velocity of a particle is [tex]\vec{u}[/tex]=(-3[tex]\hat{i}[/tex]+4[tex]\hat{j}[/tex])m/s.
x-component of acceleration = 3t/4
y-component of acceleration = -1 - 3t/4
If total work done in interval t=0 to t=4 seconds is 90K Joules, then find the value of K.

[The format of answering requires K to be an integer between 0 and 9 (inclusive)]


Homework Equations


Basic Kinematic definitions with complicated level of Calculus


The Attempt at a Solution

 
Physics news on Phys.org
  • #2
You should show some attempt at the solution. Without that we are not permitted to help.
What about actually citing relevant equations and substituing them?
 
  • #3
magwas said:
You should show some attempt at the solution. Without that we are not permitted to help.
What about actually citing relevant equations and substituing them?

What I tried was:

ax = 3t/4
vx = -3 + 3t2/4
Fx = ma = 3t/4
Px = Fx vx = -9t/4 + 9t3/32

ay = -1 - 3t/4
vy = -t + 3t2/8 +4
Fy = ma = -1 - 3t/4
Py = Fy vy = 9t3/32 + 9t2/8 - 2t - 4

az = -10
vz = -10t
Fz = ma = -10
Pz = Fz vz = 100t

P = Px + Py + Pz = -9t/4 + 9t3/32 + 9t3/32 + 9t2/8 - 2t - 4 + 100t = 9t3/16 + 9t2/8 + 383t/4 - 4

[tex]W = \int P dt[/tex]

W = 9t4/64 + 3t3/8 + 383t2/8 - 4t

Work Done form 0 sec to 4 sec = W(4)-W(0) = 9(4)4/64 + 3(4)3/8 + 383(4)2/8 - 4(4) = 36 + 24 + 766 - 16 = 810 = 90(9)

Hence K=9[\b]


Please tell if this is correct...
 
  • #4
you made a typo in vx, however your Px is okay.

Your calculation is otherwise correct.
 
  • #5
Oh yes, it should be vx = -3 + 3t2/8

But is there any smarter method which is less vulnerable to calculation errors?
 
  • #6
I used to avoid calculation errors by using a math package and always denoting the units.
Your example in sympy:
Code:
$ isympy 
Python 2.6.4 console for SymPy 0.7.0-git

These commands were executed:
>>> from __future__ import division
>>> from sympy import *
>>> x, y, z = symbols('xyz')
>>> k, m, n = symbols('kmn', integer=True)
>>> f, g, h = map(Function, 'fgh')

Documentation can be found at http://sympy.org/

In [1]: s,m,kg=symbols("s,m,kg",real=True,positive=True)

In [2]: v0=Matrix([-3*m/s,4*m/s,0*m/s])

In [3]: t=symbols("t",real=True,positive=True)

In [4]: a=Matrix([3*t/4*m/s**3,-1.0*m/s**2-3*t/4*m/s**3,-10.0*m/s**2])

In [5]: v=v0+integrate(a,(t,0,t))

In [6]: F=a*1*kg
In [7]: a
Out[7]: 
⎡   3⋅m⋅t    ⎤
⎢   ─────    ⎥
⎢       3    ⎥
⎢    4⋅s     ⎥
⎢            ⎥
⎢  3⋅m⋅t   m ⎥
⎢- ───── - ──⎥
⎢      3    2⎥
⎢   4⋅s    s ⎥
⎢            ⎥
⎢  -10.0⋅m   ⎥
⎢  ───────   ⎥
⎢      2     ⎥
⎣     s      ⎦

In [8]: v
Out[8]: 
⎡               2  ⎤
⎢    3⋅m   3⋅m⋅t   ⎥
⎢  - ─── + ──────  ⎥
⎢     s        3   ⎥
⎢           8⋅s    ⎥
⎢                  ⎥
⎢                 2⎥
⎢4⋅m   m⋅t   3⋅m⋅t ⎥
⎢─── - ─── - ──────⎥
⎢ s      2       3 ⎥
⎢       s     8⋅s  ⎥
⎢                  ⎥
⎢    -10.0⋅m⋅t     ⎥
⎢    ─────────     ⎥
⎢         2        ⎥
⎣        s         ⎦

In [9]: F
Out[9]: 
⎡    3⋅kg⋅m⋅t     ⎤
⎢    ────────     ⎥
⎢         3       ⎥
⎢      4⋅s        ⎥
⎢                 ⎥
⎢   ⎛  3⋅m⋅t   m ⎞⎥
⎢kg⋅⎜- ───── - ──⎟⎥
⎢   ⎜      3    2⎟⎥
⎢   ⎝   4⋅s    s ⎠⎥
⎢                 ⎥
⎢   -10.0⋅kg⋅m    ⎥
⎢   ──────────    ⎥
⎢        2        ⎥
⎣       s         ⎦

In [10]: pp=[]

In [11]: for i in range(3):  pp.append((F[i]*v[i]).expand())
   ...: 

In [12]: P=Matrix(pp)
In [13]: P
Out[13]: 
⎡                        2         2  3               ⎤
⎢                9⋅kg⋅t⋅m    9⋅kg⋅m ⋅t                ⎥
⎢              - ───────── + ──────────               ⎥
⎢                      4           6                  ⎥
⎢                   4⋅s        32⋅s                   ⎥
⎢                                                     ⎥
⎢          2           2             2  2         2  3⎥
⎢  2⋅kg⋅t⋅m    4.0⋅kg⋅m    1.125⋅kg⋅m ⋅t    9⋅kg⋅m ⋅t ⎥
⎢- ───────── - ───────── + ────────────── + ──────────⎥
⎢       4           3             5               6   ⎥
⎢      s           s             s            32⋅s    ⎥
⎢                                                     ⎥
⎢                                2                    ⎥
⎢                    100.0⋅kg⋅t⋅m                     ⎥
⎢                    ─────────────                    ⎥
⎢                           4                         ⎥
⎣                          s                          ⎦

In [14]: P_sum=P[0]+P[1]+P[2]

In [15]: P_sum
Out[15]: 
            2           2             2  2         2  3
95.75⋅kg⋅t⋅m    4.0⋅kg⋅m    1.125⋅kg⋅m ⋅t    9⋅kg⋅m ⋅t 
───────────── - ───────── + ────────────── + ──────────
       4             3             5               6   
      s             s             s            16⋅s    

In [16]: W=integrate(P_sum,t)

In [17]: W
Out[17]: 
            2              2  2             2  3         2  4
  4.0⋅kg⋅t⋅m    47.875⋅kg⋅m ⋅t    0.375⋅kg⋅m ⋅t    9⋅kg⋅m ⋅t 
- ─────────── + ─────────────── + ────────────── + ──────────
        3               4                5               6   
       s               s                s            64⋅s    

In [18]: Wsum=integrate(P_sum,(t,0*s,4*s))

In [19]: Wsum
Out[19]: 
          2
810.0⋅kg⋅m 
───────────
      2    
     s
 
  • #7
but i can't really use computer during exams!
 
  • #8
particlemania said:
but i can't really use computer during exams!

You can check units also by hand.
And you can practice.
 

1. What is K in the XYZ Space?

K in the XYZ Space refers to the value of the constant used in calculating the coordinates of a point in three-dimensional space. It is commonly used in physics and mathematics to represent the distance between two points.

2. How do you calculate K in the XYZ Space?

To calculate K in the XYZ Space, you will need to know the coordinates of two points in three-dimensional space. Then, you can use the distance formula, which is K = √((x2 - x1)^2 + (y2 - y1)^2 + (z2 - z1)^2), where (x1, y1, z1) and (x2, y2, z2) are the coordinates of the two points.

3. What is the significance of K in the XYZ Space?

K in the XYZ Space is significant because it helps us determine the distance between two points in three-dimensional space. This is important in various fields such as physics, engineering, and navigation.

4. Can K in the XYZ Space be negative?

No, K in the XYZ Space cannot be negative. It represents the distance between two points, which is always a positive value. If the coordinates of the two points are negative, the distance formula will still yield a positive value for K.

5. Are there any limitations to using K in the XYZ Space?

One limitation of using K in the XYZ Space is that it only represents the distance between two points. It does not take into account any other factors such as obstacles or changes in direction. Additionally, the distance formula assumes a straight line between the two points, so it may not accurately represent the distance in cases where the path is curved.

Similar threads

  • Introductory Physics Homework Help
Replies
4
Views
2K
  • Introductory Physics Homework Help
Replies
3
Views
3K
  • Introductory Physics Homework Help
Replies
12
Views
3K
  • Introductory Physics Homework Help
Replies
24
Views
2K
  • Introductory Physics Homework Help
2
Replies
37
Views
3K
  • Introductory Physics Homework Help
Replies
7
Views
2K
  • Math Proof Training and Practice
3
Replies
100
Views
7K
  • Math Proof Training and Practice
2
Replies
42
Views
6K
  • Introductory Physics Homework Help
Replies
9
Views
1K
  • Introductory Physics Homework Help
Replies
9
Views
1K
Back
Top