Cinématique du Point Matériel en 1D et 2D

SA
StudyAI Editorial
Reviewed by StudyAI tutors
· Published Updated

From the cinématique curriculum

Cinématique du Point Matériel en 1D et 2D

TL;DR

You're learning how to describe the motion of an object (a "point particle") without worrying about why it moves. We'll track its position, velocity, and acceleration in one or two dimensions using simple math. Mastering these concepts is fundamental for understanding more complex physics.

1. The Mental Model

Imagine a tiny, perfect dot moving through space. Kinematics is just journaling its journey: where it is, how fast it's going, and how its speed or direction is changing. We don't care what's pushing or pulling it – just the "how" of its motion.

2. The Core Material

Kinematics focuses on three main quantities:

Position ($\vec{r}$)

This tells you where an object is. In 1D, it's just a number (e.g., $x = 5 \text{m}$). In 2D, it's a vector with two components (e.g., $\vec{r} = (x, y)$ or $x\hat{i} + y\hat{j}$). We always define an origin (the $(0,0)$ point) and axes to give our positions meaning.

Velocity ($\vec{v}$)

Velocity describes how fast an object's position is changing and in what direction. It's the rate of change of position.

  • Average velocity: $\vec{v}{avg} = \frac{\Delta \vec{r}}{\Delta t} = \frac{\vec{r}{final} - \vec{r}{initial}}{t{final} - t_{initial}}$
  • Instantaneous velocity: $\vec{v}(t) = \frac{d\vec{r}}{dt}$ (the derivative of position with respect to time). Its magnitude is called speed.

Acceleration ($\vec{a}$)

Acceleration describes how fast an object's velocity is changing (either its speed or direction, or both). It's the rate of change of velocity.

  • Average acceleration: $\vec{a}{avg} = \frac{\Delta \vec{v}}{\Delta t} = \frac{\vec{v}{final} - \vec{v}{initial}}{t{final} - t_{initial}}$
  • Instantaneous acceleration: $\vec{a}(t) = \frac{d\vec{v}}{dt} = \frac{d^2\vec{r}}{dt^2}$ (the derivative of velocity with respect to time, or the second derivative of position).

Motion in 1D (Mouvement Rectiligne Uniformément Varié - MRUV)

When acceleration is constant, we have a set of handy equations. Think of a ball falling straight down.
* $v(t) = v_0 + at$
* $x(t) = x_0 + v_0 t + \frac{1}{2}at^2$
* $v^2 = v_0^2 + 2a(x - x_0)$

Here, $x_0$ and $v_0$ are the initial position and velocity at $t=0$.

Motion in 2D

In 2D, we often treat the $x$ and $y$ motions independently. If acceleration is constant (like gravity acting only in the $y$ direction), you can apply the 1D MRUV equations separately to the $x$ and $y$ components.

Key idea: Vectors let us handle direction. If you have a position $\vec{r}(t) = x(t)\hat{i} + y(t)\hat{j}$, then:
* $\vec{v}(t) = \frac{dx}{dt}\hat{i} + \frac{dy}{dt}\hat{j} = v_x(t)\hat{i} + v_y(t)\hat{j}$
* $\vec{a}(t) = \frac{dv_x}{dt}\hat{i} + \frac{dv_y}{dt}\hat{j} = a_x(t)\hat{i} + a_y(t)\hat{j}$

A classic example is projectile motion (lancer de projectile), where $a_x = 0$ (no horizontal acceleration, ignoring air resistance) and $a_y = -g$ (gravity acts downwards).

Here's the relationship between these quantities:

graph TD
    P["Position (r)"] --> V["Velocity (v)"]
    V --> A["Acceleration (a)"]
    V -.-> P;
    A -.-> V;

    subgraph Time-based Operations
        P -- "Derivative (d/dt)" --> V
        V -- "Derivative (d/dt)" --> A
        A -- "Integral (∫dt)" --> V
        V -- "Integral (∫dt)" --> P
    end

    style V fill:#afa,stroke:#333,stroke-width:2px;
    style P fill:#ccf,stroke:#333,stroke-width:2px;
    style A fill:#fcc,stroke:#333,stroke-width:2px;

Reference Frames (Référentiels)

All measurements (position, velocity, acceleration) are relative to a chosen reference frame. Usually, we use an inertial reference frame, which is either at rest or moving with constant velocity. This makes Newton's laws simpler to apply later.

3. Worked Example

Let's track a particle in 2D. Its position is given by $\vec{r}(t) = (3t^2 - 2t)\hat{i} + (5t - 4)\hat{j}$, where $\vec{r}$ is in meters and $t$ in seconds.

  1. Find the position at $t=2s$:
    $\vec{r}(2) = (3(2)^2 - 2(2))\hat{i} + (5(2) - 4)\hat{j}$
    $\vec{r}(2) = (3 \times 4 - 4)\hat{i} + (10 - 4)\hat{j}$
    $\vec{r}(2) = (12 - 4)\hat{i} + 6\hat{j}$
    $\vec{r}(2) = 8\hat{i} + 6\hat{j}$ meters.

  2. Find the velocity function $\vec{v}(t)$:
    $\vec{v}(t) = \frac{d\vec{r}}{dt} = \frac{d}{dt}(3t^2 - 2t)\hat{i} + \frac{d}{dt}(5t - 4)\hat{j}$
    $\vec{v}(t) = (6t - 2)\hat{i} + 5\hat{j}$ m/s.

  3. Find the velocity at $t=2s$:
    $\vec{v}(2) = (6(2) - 2)\hat{i} + 5\hat{j}$
    $\vec{v}(2) = (12 - 2)\hat{i} + 5\hat{j}$
    $\vec{v}(2) = 10\hat{i} + 5\hat{j}$ m/s.

  4. Find the acceleration function $\vec{a}(t)$:
    $\vec{a}(t) = \frac{d\vec{v}}{dt} = \frac{d}{dt}(6t - 2)\hat{i} + \frac{d}{dt}(5)\hat{j}$
    $\vec{a}(t) = 6\hat{i} + 0\hat{j}$
    $\vec{a}(t) = 6\hat{i}$ m/s$^2$.
    (This tells us the acceleration is constant and only in the positive $x$ direction).

4. Key Takeaways

  • Position describes an object's location relative to an origin.
  • Velocity describes how position changes over time, including direction.
  • Acceleration describes how velocity changes over time (speeding up, slowing down, or changing direction).
  • In 1D with constant acceleration, use the three MRUV equations.
  • In 2D, you can often treat $x$ and $y$ motions independently.
  • Differentiation moves from position to velocity to acceleration.
  • Integration moves from acceleration to velocity to position.
  • All motion is relative to a chosen reference frame, usually an inertial one.

Common Mistakes to Avoid

  • Don't confuse speed (magnitude of velocity) with velocity (speed and direction).
  • Forgetting that acceleration can change an object's direction even if its speed is constant (e.g., circular motion).
  • Mixing up units or not paying attention to them (e.g., meters vs. kilometers, seconds vs. minutes).
  • Assuming constant acceleration when it's not explicitly stated or implied.
  • Forgetting initial conditions ($x_0, v_0$) when integrating or using MRUV equations.

5. Now Try It

You're driving a car. From a traffic light (assume x=0, t=0), you accelerate at a constant $2.0 \text{ m/s}^2$ for $5.0 \text{ s}$. Then you maintain a constant speed for $10.0 \text{ s}$. Finally, you brake, decelerating at $3.0 \text{ m/s}^2$ until you stop.

What to do:
1. Calculate your speed at the end of the first $5.0 \text{ s}$.
2. Calculate the total distance you've traveled from the light until you stop.

What success looks like:
You should be able to break the problem into three distinct phases and apply the correct 1D kinematic equations for each phase, calculating intermediate velocities and distances, and summing them for the total distance. Your total distance should be around $204 \text{ meters}$.

Frequently asked about Cinématique du Point Matériel en 1D et 2D

# Cinématique du Point Matériel en 1D et 2D ## TL;DR You're learning how to describe the motion of an object (a "point particle") without worrying about *why* it moves. We'll track its position, velocity, and acceleration in one or two dimensions using simple math. Mastering Read the full notes above.

Cinématique du Point Matériel en 1D et 2D is a core topic in cinématique. Most exam papers test it via a mix of definitions, worked examples, and applied problems. The notes above cover the high-yield sub-topics, common pitfalls, and the kind of questions examiners typically set.

Yes. Every note in the StudyAI Campus Hub is free to read. Create a free account if you want to clone the full plan, generate your own notes from your textbook, or get AI-powered practice quizzes and flashcards.

More from cinématique


Get the full cinématique curriculum

Clone the complete plan to your dashboard for unlimited AI-generated notes, practice quizzes, and a personalised revision schedule.

Create Free Account