JOVANA
Library Glossary Getting Started Three Levels Fields How it works Mission
Join the mission
All guides

Position and Orientation: The Two Halves of Pose

Where a body sits is only half the story; which way it faces is the other half, and together they make a pose.

Two Questions a Gripper Must Answer

Picture a robot arm reaching to pick up a coffee mug. Its hand, the end-effector, has to get to exactly the right spot in space. But "the right spot" is sneakier than it sounds, because there are really two separate questions hiding inside it. First: where is the hand? Second: which way is it tilted? You can hover perfectly above the mug and still fail to grab it if your fingers are pointing the wrong way.

These two questions are genuinely independent. You can change where the hand sits without spinning it at all, and you can spin the hand in place without moving it an inch. Roboticists give each question its own name: the answer to "where" is the position, and the answer to "which way" is the orientation. Almost every chapter that follows is really about describing one or both of these precisely with numbers.

Position: Three Numbers for Where

Position is the easy half, because we already think this way every day. To say where something is, you give an offset from the origin of your frame along three perpendicular directions: how far right, how far forward, how far up. Those three offsets are written as a position vector, usually called p, with components (x, y, z). The mug sits at p = (0.4, 0.1, 0.2) meters; the hand needs to arrive at the same p.

Think of position as the address printed on an envelope. It pins down a single point and nothing more. It does not care whether the object is upright, lying on its side, or spinning like a top. A point has no "facing" of its own, so position alone can never tell you how to grab something, only where to reach.

Three numbers, three independent ways to move: right or left, forward or back, up or down. Each is a separate degree of freedom, a knob you can turn without disturbing the other two. That is why we say position lives in three dimensions. Hold on to that count of three, because orientation, surprisingly, also costs exactly three numbers, and the next section explains why.

Orientation: Which Way the Body Is Turned

Now for the trickier half. Orientation is the answer to "which way is it turned?" The cleanest way to picture it is to glue a tiny set of arrows onto the body itself: one pointing out of the gripper's palm, one out the side, one along the wrist. As the hand tilts and rotates, this little trio of arrows tilts and rotates with it. Orientation is simply how those body-attached arrows are aimed compared to the fixed reference arrows of the world.

Why does orientation also take three numbers? Imagine the body's arrows start lined up perfectly with the world's. You can tip them forward and back (pitch), roll them side to side (roll), and swivel them left and right (yaw). Three independent spins, no more and no less, are enough to reach any orientation in three-dimensional space. So a fully free rigid body has six degrees of freedom in total: three for position and three for orientation.

There are several different notations for writing orientation down: a rotation matrix, a triple of Euler angles, or a unit quaternion. They are just different alphabets for the same idea (how the body is turned), each with its own strengths. The point of this section is only the intuition; the bookkeeping comes later.

Pose: The Two Halves Joined

Put the two halves together and you get the single most important word in this whole chapter: pose. A pose is the complete answer to "where and which way", position plus orientation bundled into one package. When someone says "send the gripper to this pose", they mean both: arrive at this point, and arrive tilted this way. Nothing about a rigid body's placement is left unsaid once you know its pose.

Because position carries three numbers and orientation carries three, a full pose carries six. This is why you constantly hear engineers say a free-floating arm or object has "six DoF". A pose is always expressed relative to a frame, so it is just as natural to describe the pose of one frame as seen from another, for example the gripper's pose as measured from the corner of the table.

pose  =  position (3 numbers)  +  orientation (3 numbers)
      =  where               +  which way
      =  6 degrees of freedom for a free rigid body

  mug pose:     p = (0.4, 0.1, 0.2) m ,  upright
  gripper goal: same p , fingers pointing down at the mug
A pose bundles the two halves; the gripper must match both to grab the mug.

From here, the rest of the chapter is one long answer to a single question: how do we write orientation down with numbers, so a computer can store it, combine it, and command it? Position was easy, just three offsets. Orientation is where the real machinery lives, and the next chapters introduce, one at a time, the rotation matrix, Euler angles, and the quaternion. Keep the pose picture in mind, because every one of those tools is ultimately just a way to fill in the orientation half of a pose.