Lesson 1 of 6 ยท 8 min ยท +80 XP
What is a robot, actually?
- Define a robot in your own words
- Identify the Sense-Think-Act loop in any machine
The robot in your head โ the one from movies โ probably walks, talks, and has opinions about humanity. That robot doesn't really exist yet.
The ones that do exist are stranger. And honestly more interesting.
Every robot does three things
No matter how simple or complex, every robot ever built follows the same loop:
Sense โ it takes in information from the world. A camera. A microphone. A distance sensor. GPS coordinates.
Think โ it processes that information and makes a decision. What does this data mean? What should I do next?
Act โ it does something physical in the world. Moves a wheel. Opens a valve. Picks up an object.
This is the Sense-Think-Act loop. It's the skeleton of every robot ever built โ from a โน2,000 toy to a Mars rover.
Three robots. Same loop.
A Roomba
- Sense: bump and cliff sensors
- Think: "I hit something โ turn right."
- Act: wheels reverse, robot turns
A factory robotic arm
- Sense: position encoders at each joint
- Think: follow the pre-programmed path
- Act: motors move with millimetre precision
A self-driving car
- Sense: cameras, radar, LiDAR
- Think: neural networks + path planning
- Act: steers, brakes, accelerates
The loop is identical. The "Think" step is what varies โ from a few lines of if-else to deep neural networks.
Why this matters
Once you see the loop, you see it everywhere. Thermostats. Autopilots. Recommendation algorithms. They all follow Sense โ Think โ Act.
It also tells you exactly where robots fail: it sensed wrong, it thought wrong, or it acted wrong. That's the whole list.
A motion-sensor light turns ON when you walk past. Which part of the loop is the motion sensor?