Control Systems and Their Limitations

In this section, we step from kinematics to control. We first show how to reason with velocities (differential inverse kinematics, diff-IK), then close the loop with feedback, and finally summarize where classical pipelines struggle in practice.

Differential Kinematics: A Smarter Approach

Instead of solving for joint positions directly, we can work with velocities:

The Key Insight

If we know the relationship between joint velocities and end-effector velocities, we can control motion more smoothly: p˙=J(q)q˙\dot{p} = J(q) \dot{q}

Where J(q)J(q) is the Jacobian matrix - the relationship between joint and task space velocities.

Differential IK Solution

Given a desired end-effector velocity $\dot{p}^*$, find joint velocities: q˙=J(q)+p˙\dot{q} = J(q)^+ \dot{p}^*

Where J(q)+J(q)^+ is the pseudo-inverse of the Jacobian.

Adding Feedback Control

Open-loop tracking is brittle under modeling errors and disturbances. We close the loop by feeding back the tracking error.

Moving Obstacle

Dealing with moving obstacles requires feedback control.

Real environments are dynamic and uncertain. We need feedback to handle:

Feedback Control Solution

Combine desired motion with error correction: q˙=J(q)+(p˙+kpΔp)\dot{q} = J(q)^+ (\dot{p}^* + k_p \Delta p)

Where Δp=pp(q)\Delta p = p^* - p(q) is the position error.

Start with small kpk_p and increase gradually while monitoring oscillations. Use a watchdog (safety stop) and saturate commands to keep the system within safe limits.

Why Classical Approaches Struggle

With differential reasoning and feedback, many tracking tasks are solvable—on paper. In practice, the system still breaks under real-world complexity for the reasons below.

Classical Limitations

Four key limitations of dynamics-based robotics approaches.

1. Integration Challenges

Classical pipelines are built from separate modules:

Problems:

2. Limited Scalability

Traditional methods struggle with:

3. Modeling Limitations

Real-world physics is complex:

4. Ignoring Data Trends

Classical methods don’t leverage:

The Learning Alternative

To address these limitations, we contrast a classical modular pipeline with an end-to-end learning policy.

classical
learning

Classical Robotics Approach:

PerceptionState EstimationPlanningControlActuation

Challenges:

This is the promise of robot learning!

The Best of Both Worlds: Modern robot learning often combines classical insights with learning. For example one can combine learning with safety constraints from control theory

Pure learning vs pure classical is a false dichotomy - hybrid approaches have had their successes


Key Takeaways

Up next, we’ll show how learning-based methods (reinforcement learning and imitation learning) absorb some of this complexity by optimizing directly from data.

References

For a full list of references, check out the tutorial.

Update on GitHub