Every industrial robot deployment eventually runs into a question that kinematics alone cannot answer. Inverse kinematics, covered in our industrial robot kinematics guide, tells the controller how to reach one specific point: given a target position and orientation, what joint angles get the end effector there. But a robot rarely moves to just one point in isolation. It has to get from where it is now to where it needs to be next, across a work cell full of fixtures, conveyors, other machinery, and sometimes people — without colliding with any of it. Deciding the actual sequence of intermediate points the robot should pass through to make that trip safely and efficiently is a separate problem called path planning (often used interchangeably with the broader term motion planning, which also accounts for velocity, acceleration, and dynamic constraints along the path). Kinematics answers "how do I reach this point"; path planning answers "which points should I reach, in what order, to get across this environment."

Why Path Planning Is a Distinct Problem

Consider a 6-axis arm reaching into a machine tending cell to pick a part, then placing it on a conveyor a meter away. Naively commanding the controller to move directly from the pick pose to the place pose — a straight-line interpolation in joint space or Cartesian space — might send the arm straight through the machine's door frame, a safety fence, or a fixture sitting between the two points. The robot's inverse kinematics would happily compute a valid joint solution for the destination pose; nothing in that calculation knows or cares that the straight-line path to get there is blocked. Path planning exists specifically to solve that gap: it searches for a route through the space of possible robot configurations that avoids known obstacles, and hands the resulting sequence of waypoints to the motion controller, which then relies on kinematics to execute each individual point along that route. In mobile robotics the same logic applies at a larger scale — an automated guided vehicle (AGV) or autonomous mobile robot (AMR) navigating a warehouse floor needs a route around shelving, parked equipment, and other traffic, not just a bearing and a distance to its destination.