Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • Physics Class-11th Notes
  • Physics Formulas
  • Physics Symbol
  • Application of Physics
  • Class 8 Science
  • Class 9 Science
  • Class 10 Science
  • Class 11 Science
  • Class 12 Science
  • Class 8 Study Material
  • Class 9 Study Material
  • Class 10 Study Material
  • Class 11 Study Material
  • Class 12 Study Material
Open In App
Next Article:
Displacement in Simple Harmonic Motion
Next article icon

Motion in Three Dimensions

Last Updated : 18 Feb, 2023
Comments
Improve
Suggest changes
Like Article
Like
Report

A particle moving in a 1-dimensional space requires only one coordinate to specify its position. In two dimensions similarly, two coordinates are required. Three-dimensional motions are encountered at a lot of places in real life, to analyze these real-life situations. One needs to understand the motion and how to deal with these three coordinates mathematically to describe the trajectories of objects traveling in a three-dimensional plane. Let’s look at these concepts in detail.

Motion in a Three-Dimensional Space

Suppose a particle is moving between two points in a three-dimensional space. To describe the position of this particle, a position vector is required. These vectors are always with respect to the reference frame at the origin. The following parameters are required to fully describe the behavior of a particle moving in a plane,

  1. Position
  2. Velocity
  3. Acceleration

Position Vector

In a 3-d space, a particle can be anywhere, it cannot be described by just one coordinate. In this case, it is denoted with respect to the origin and it also constitutes the direction one should go in to find that point. That is why a vector is required to describe the position. The vector which denotes the position and direction of the particle’s position with respect to the origin is called the position vector. The position vector [Tex]\vec{r} [/Tex] for a particle is given by, 

[Tex]\vec{r} = x\hat{i} + y\hat{j} + z\hat{k}[/Tex]

Where x,  y, and z are their components along the x, y, and z-axis. 

Velocity

The velocity of a particle traveling in the three-dimensional space can be described in two ways – average velocity and instantaneous velocity. When the particle is under acceleration, it changes its velocity every second. So, a single value cannot be assigned to a velocity. In such cases, the instantaneous velocity is preferred, it describes the velocity and its direction at a particular instant. It is given by,

[Tex]\vec{v} = \lim_{\Delta t \to 0}\frac{\Delta \vec{r}}{\Delta t}\\ = \vec{v} = \frac{dr}{dt}[/Tex]

Velocity can also be expressed as, 

[Tex]v = \frac{dx}{dt}\hat{i} + \frac{dy}{dt}\hat{j} + \frac{dz}{dt}\hat{k}[/Tex]

The average velocity is the ratio of total displacement over total time. Suppose a particle goes from  [Tex]\vec{r} [/Tex] to [Tex]\vec{r’} [/Tex] in a total time of [Tex]\Delta t[/Tex]

The velocity is given by, 

[Tex]\vec{v} = \frac{\vec{r} – \vec{r’}}{\Delta t}[/Tex]

Acceleration

The acceleration of a body moving in a plane is given by the rate of change in its velocity. Similar to velocity, there can be two cases here too –  average acceleration and instantaneous acceleration. Average acceleration is given by the ratio of the net change in the velocity of the object with the total time taken. Let initial and final velocities be denoted by [Tex] \vec{v}_{i} [/Tex] and [Tex]\vec{v_{f}}[/Tex]

[Tex]\vec{v} = \frac{\vec{v_{f}} – \vec{v_{i}}}{\Delta t}[/Tex]

Instantaneous acceleration is used when the acceleration of the body is changing with time. 

[Tex]\vec{a} = \lim_{\Delta t \to 0}\frac{\Delta \vec{v}}{\Delta t}\\ = \vec{a} = \frac{dv}{dt}[/Tex]

Decomposing this into its components, 

[Tex]a = \frac{dv_{x}}{dt}\hat{i} + \frac{dv_{y}}{dt}\hat{j}  + \frac{dv_z}{dt}\hat{k}\\ = a = \frac{d^2x}{dt^2}\hat{i} + \frac{d^2y}{dt^2}\hat{j} + \frac{d^2z}{dt^2}\hat{k}[/Tex]

The magnitude of acceleration can also be calculated using the components of velocity, 

 [Tex]a = \sqrt{a_x^2 + a_y^2 + a_z^2}[/Tex]

Relative Motion in Three Dimensions

Relative motion represents the velocity of some body as seen from one frame of reference. These concepts have been known in form of one-dimensional and second-dimensional spaces. But these concepts can be extended to three-dimensional spaces also. Given in the figure below, consider a particle P and reference frames S and S’. The position of the frame S’ as measured in S is rS’S, the position of the particle P as measured with respect to the frame S’ is given by rPS’ and the position of the particle P with respect to the frame of reference S is given by rPS,

Notice from the figure that, 

rPS  = rPS’  + rS’S

These vectors give us the formula for relative velocities too, differentiating the above equation, 

[Tex]\frac{d}{dt}(r_{PS})  = \frac{d}{dt}(r_{PS’}  + r_{S’S}) [/Tex]

⇒[Tex]\vec{v}_{PS} = \vec{v}_{PS’}  + \vec{v}_{S’S}[/Tex]

Intuitively speaking, the velocity of a particle with respect to S is equal to the velocity of S’ with respect to S plus the velocity of the particle with respect to S. Differentiating this equation again, the equation for the acceleration is given by, 

[Tex]\frac{d}{dt}(\vec{v}_{PS}) = \frac{d}{dt}(\vec{v}_{PS’}  + \vec{v}_{S’S}) [/Tex]

⇒[Tex]\vec{a}_{PS} = \vec{a}_{PS’}  + \vec{a}_{S’S}[/Tex]

The acceleration of a particle with respect to S is equal to the acceleration of S’ with respect to S plus the acceleration of the particle with respect to S. 

Sample Problems 

Question 1: Find the velocity at t = 2, for the particle which is moving in a plane and whose position is given, r = t2i + t2j + tk

Answer: 

Given: the initial and final position vectors, 

r = t2i + t2j + tk

The velocity in this case is given by the formula, 

[Tex]v = \frac{dx}{dt}\hat{i} + \frac{dy}{dt}\hat{j} + \frac{dz}{dt}\hat{k}[/Tex]

Here x(t) = t2 and y(t) = t2 and z(t) = t

Plugging these values into the equation, 

[Tex] v = \frac{dx}{dt}\hat{i} + \frac{dy}{dt}\hat{j} + \frac{dz}{dt}\hat{k} \\ v= \frac{d}{dt}(t^2)\hat{i} + \frac{d}{dt}(t^2)\hat{j} + \frac{d}{dt}(t) \hat{k}\\ v = 2t \hat{i} + 2t\hat{j} + \hat{k}[/Tex]

 At t = 2, 

[Tex]v = 2t \hat{i} + 2t\hat{j} + \hat{k} \\ = v = 2(2)\hat{i} + 2(2)\hat{j} + \hat{k} \\ = v = 4\hat{i} + 4\hat{j} + \hat{k}[/Tex]

Question 2: Find the velocity at t = 0, for the particle which is moving in a plane and whose position is given, r = (t+2)i + (4t2+2)j + t2k

Answer: 

Given: the initial and final position vectors, 

r =  (t+2)i + (4t2+2)j + t2k

The velocity in this case is given by the formula, 

[Tex]v = \frac{dx}{dt}\hat{i} + \frac{dy}{dt}\hat{j} + \frac{dz}{dt}\hat{k}[/Tex]

Here x(t) = (t + 2) and y(t) = 4t2 + 2and z(t) = t2

Plugging these values into the equation, 

[Tex] v = \frac{dx}{dt}\hat{i} + \frac{dy}{dt}\hat{j} + \frac{dz}{dt}\hat{k} \\ v= \frac{d}{dt}(t + 2)\hat{i} + \frac{d}{dt}(4t^2 + 2)\hat{j} + \frac{d}{dt}(t^2) \hat{k}\\ v = \hat{i} + 8t\hat{j} + 2t\hat{k}[/Tex]

At t = 0, 

[Tex]v = \hat{i} + 8t\hat{j} + 2t\hat{k} [/Tex]

⇒[Tex]v = \hat{i} + 8(0)\hat{j} + 2(0)\hat{k} [/Tex]

⇒ v = i 

Question 3: Find the average acceleration between t = 0 and t = 3, for the particle which is moving in a plane and whose position is given, v = 3ti + 3t3j + k

Answer: 

Given: velocity as a function of time. 

v = 3ti + 3t3j + k

The velocity vector changes with time. The average acceleration is given by the formula, 

[Tex]\vec{a} = \frac{\vec{v_f} – \vec{v_i}}{\Delta t}[/Tex]

At t = 0 

vi = 0i + 0j  + k 

At t = 3 

vf = 9i + 81j  + k

[Tex]\Delta t = 3[/Tex]

Plugging the values into the above equation, 

[Tex]\vec{a} = \frac{\vec{v_f} – \vec{v_i}}{\Delta t}\\ = \vec{a} = \frac{9\hat{i} + 81\hat{j}}{3} \\ = \vec{a} = 3\hat{i} + 27\hat{j}[/Tex]

Question 4: Find the average acceleration between t = 0 and t = 2, for the particle which is moving in a plane and whose position is given, v = ti + 3tj + 2k

Answer: 

Given: velocity as a function of time. 

v = ti + 3tj + 2k

The velocity vector changes with time. The average acceleration is given by the formula, 

[Tex]\vec{a} = \frac{\vec{v_f} – \vec{v_i}}{\Delta t}[/Tex]

At t = 0 

vi = 0i + 0j  + 2k 

At t = 2 

vf = 2i + 6j  + 2k

[Tex]\Delta t = 2[/Tex]

Plugging the values into the above equation, 

[Tex]\vec{a} = \frac{\vec{v_f} – \vec{v_i}}{\Delta t}\\ = \vec{a} = \frac{2\hat{i} + 6\hat{j}}{2} \\ = \vec{a} = \hat{i} + 3\hat{j}[/Tex]

Question 5: Find the instantaneous acceleration at t = 1, for the particle which is moving in a plane and whose position is given, v = 2ti + 5t3j + tk

Answer: 

Given: velocity as a function of time. 

v = 2ti + 5t3j + tk

The velocity vector changes with time. The instantaneous acceleration is given by the formula, 

[Tex]\vec{a} = \frac{d}{dt}(\vec{v})[/Tex]

[Tex]\vec{a} = \frac{d}{dt}(2t\hat{i} + 5t^3\hat{j} + t\hat{k})[/Tex]

⇒ [Tex]\vec{a} = 2\hat{i} + 15t^2\hat{j} + \hat{k}[/Tex]

at t = 1, 

⇒ [Tex]\vec{a} = 2\hat{i} + 15(1)^2\hat{j} + \hat{k}[/Tex]

⇒ [Tex]\vec{a} = 2\hat{i} + 15\hat{j} + \hat{k}[/Tex]



Next Article
Displacement in Simple Harmonic Motion

A

anjalishukla1859
Improve
Article Tags :
  • Class 11
  • School Learning
  • School Physics
  • Physics-Class-11

Similar Reads

  • Practice Questions on Three Dimensional Geometry
    Three-dimensional geometry, often referred to as 3D geometry, is a fundamental topic in mathematics that deals with shapes and objects in a three-dimensional space defined by three coordinates: x, y, and z. Unlike two-dimensional geometry, which only considers length and width, three-dimensional geo
    9 min read
  • Measuring the Rate of Motion
    We use general things around us that are moving, like if we see around us, monitor air moving around us, like we have clocks with the hands moving, we all know that day and night is caused because of motion of Earth around the Sun, yet seasons are caused because of it. So we are going to study in de
    10 min read
  • Displacement in Simple Harmonic Motion
    The Oscillatory Motion has a big part to play in the world of Physics. Oscillatory motions are said to be harmonic if the displacement of the oscillatory body can be expressed as a function of sine or cosine of an angle depending upon time. In Harmonic Oscillations, the limits of oscillations on eit
    10 min read
  • Dimensional Formula of Torque
    What is the Dimensional Formula of Torque?Dimensional Formula of torque is [ML2T -2] Dimensional Formula represents a physical quantity in terms of its fundamental unit with suitable dimensions. Every physical quantity is represented in terms of some fundamental quantities. In this article, we study
    3 min read
  • Dimensional Formula of Stress
    Dimensional Formula of Stress is M1L-1T-2 Dimensional Formula is an expression that defines the power of fundamental quantities, i.e. Mass, Length, and Time in units of a quantity. Every physical quantity has its dimensional formula. Other fundamental quantities such as electric current (A) and ther
    4 min read
  • Dimensions of Angular Speed
    Dimensional Formula of Angular Speed is M0L0T-1. Dimensional formulas are very relevant in the field of physics because they give some ideas about how each dimension depends on while deriving a specific equation. Here in this article, we will be discussing the definition of Angular speed and the Dim
    3 min read
  • Tension Dimensional Formula
    The dimensional Formula of Tension is [MLT-2]where, M represents MassL represents LengthT represents TimeTension is a force experienced by objects such as rope or string when a mass is attached to it. It is given as the sum of the forces experienced by the string. Tension forces act in pairs of acti
    3 min read
  • Projectile Motion for Horizontal Displacement
    Suppose an object is thrown at a certain angle θ with a certain velocity. In that case, the path followed by the object is called a trajectory, the thrown object is called a projectile, and the motion followed by it is called projectile motion. Once launched, the projectile moves by its inertia unde
    4 min read
  • What is Motion?
    Motion is defined as the change in the position of an object with respect to time i.e. when an object changes its position according to time it is said to be in the state of motion. Everything in the universe is in a state of continuous motion, for example, the moon revolves around the planets, the
    12 min read
  • Change in State of Motion
    In science, a push or pull of an entity is identified as a Force. The interaction between two objects arises from the force. Force has both magnitude and direction. The strength of a force is articulated in magnitude. Force brings about an altar in the direction or state of motion of a body. Charact
    11 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences