ArticleslgStudy

computer science

Linear-quadratic regulator rapidly exploring random tree

Linear-quadratic regulator rapidly exploring random tree is a computer science topic covered in the lgStudy science library. This page brings together a partial reference excerpt, illustrations, worked examples, real-world applications and a short study plan, so you can understand Linear-quadratic regulator rapidly exploring random tree rather than just read about it. In short: Linear-quadratic regulator rapidly exploring random tree (LQR-RRT) is a sampling based algorithm for kinodynamic planning. A solver is producing random actions which are forming a funnel in the state space.

Linear-quadratic regulator rapidly exploring random tree — main illustration
Linear-quadratic regulator rapidly exploring random tree — illustration

Key takeaways

  • Linear-quadratic regulator rapidly exploring random tree belongs to computer science; place it in that map before memorising details.
  • Learn the definition first, then one example that makes the definition concrete.
  • Connect Linear-quadratic regulator rapidly exploring random tree to a quantity you can measure, compute or draw — that is where exam questions come from.
  • Reproduce the core statement of Linear-quadratic regulator rapidly exploring random tree from memory before moving on to harder problems.

Reference excerpt

Linear-quadratic regulator rapidly exploring random tree (LQR-RRT) is a sampling based algorithm for kinodynamic planning. A solver is producing random actions which are forming a funnel in the state space. The generated tree is the action sequence which fulfills the cost function. The restriction is, that a prediction model, based on differential equations, is available to simulate a physical system. The method is an extension of the rapidly exploring random tree, a widely used approach to motion planning.

Motivation

The control theory is using differential equations to describe complex physical systems like an inverted pendulum. A set of differential equations forms a physics engine which maps the control input to the state space of the system. The forward model is able to simulate the given domain. For example, if the user pushes a cart to the left, a pendulum mounted on the cart will react with a motion. The exact force is determined by newton's laws of motion. A solver, for example PID controllers and model predictive control, are able to bring the simulated system into a goal state. From an abstract point of view, the problem of controlling a complex physical system is a kinodynamic motion planning problem. In contrast to a normal path planning problem, the state space isn't only a 2d map which contains x and y coordinates. But a physical underactuated system has much more dimension, e.g. the applied forces, rotating angles and friction to the ground. Finding a feasible trajectory in the complex state space is a demanding problem for mathematics.

Description

LQR tracking

Linear-quadratic regulator (LQR) is a goal formulation for a system of differential equations. It defines a cost function but doesn't answer the question of how to bring the system into the desired state. In contrast to linear problems, for example a line following robot, kinodynamic problems can be solved not with a single action but with a trajectory of many control signals. These signals are determined and constantly updated with the receding horizon strategy, also known as model predictive control (MPC). LQR tracking means to find and evaluate trajectories for solving a system of differential equations. In contrast to a PID controller, which is only able to find the next control action, a LQR tree is able to store a sequence of actions in advance. This is equal to a multistage solver which keeps the time horizon in mind. An action taken in the now will affect the system indirectly in the future with a delayed feedback.

History

The algorithm is a university-driven research project. The first version was developed by Perez et al. at the Massachusetts Institute of Technology in 2012 in the AI laboratory. In 2016 the algorithm was listed in a survey of control techniques for autonomous vehicles and was adapted by other academic robotics teams like University of Florida for building experimental path planners. In 2018, the algorithm was included in the Pythonrobotics library. The algorithm is currently being tested on the Astrobee, a six degree of freedom (DOF) free-flyer with a 3 DOF robotic arm in the International Space Station. It is currently part of the Relative Satellite Swarming and Robotic Maneuvering (ReSWARM) experiments taking place at the International Space Station since April 2021 starting with expeditions 65 and 66. Future experiments will entail physical manipulation of objects to further validate the on-orbit assembly demonstration, consideration of physical objects for real-time mapping and collision avoidance, and bringing the information-theoretic framework to a greater set of uncertain robots.

References

External links MIT ARCLab Microgavity Research A Python Code Collection of Robotics Algorithms LQR-RRT* code and visualization PythonRobotics LQR-RRT* code LQR-RRT* presentation

Illustrations

Linear-quadratic regulator rapidly exploring random tree: MPC scheme basic
MPC scheme basic
Linear-quadratic regulator rapidly exploring random tree: Astronaut and Expedition 66 Flight Engineer Matthias Maurer is pictured inside the Kibo laboratory module setting up an Astrobee robotic free-flyer for the ReSWARM experiment.
Astronaut and Expedition 66 Flight Engineer Matthias Maurer is pictured inside the Kibo laboratory module setting up an Astrobee robotic free-flyer for the ReSWARM experiment.

Worked examples

Example 1 — a first encounter with Linear-quadratic regulator rapidly exploring random tree

Start with the simplest possible case. Write down what Linear-quadratic regulator rapidly exploring random tree claims or describes in one sentence, then invent the smallest concrete situation in which that sentence is true. In computer science, the smallest case is usually a single object, a single equation or a single measurement. Check that every symbol or term in your sentence has a meaning in that case.

Example 2 — changing one variable

Take the situation from Example 1 and change exactly one quantity: double it, halve it, or set it to zero. Predict what should happen to Linear-quadratic regulator rapidly exploring random tree before you calculate. Comparing your prediction with the result is the fastest way to find out whether you understand the idea or only the words.

Example 3 — an exam-style question

Typical questions about Linear-quadratic regulator rapidly exploring random tree ask you to (a) state it precisely, (b) apply it to given data, and (c) explain a limitation. Practise writing all three answers in under five minutes; the third part is what separates a full-mark answer from an average one.

Applications of Linear-quadratic regulator rapidly exploring random tree

In research
Linear-quadratic regulator rapidly exploring random tree appears in computer science research whenever the underlying quantities have to be modelled precisely. Papers usually cite it as a starting assumption and then explore where it breaks down.
In technology and industry
Engineering practice reuses Linear-quadratic regulator rapidly exploring random tree in design rules, simulations and safety margins. Knowing the idea lets you read a specification sheet and understand why the numbers look the way they do.
In the classroom
Linear-quadratic regulator rapidly exploring random tree is common in secondary-school and first-year university syllabi. It links to neighbouring topics Optimal control, Search algorithms, so understanding it makes those chapters shorter.
In everyday life
Look for Linear-quadratic regulator rapidly exploring random tree outside the textbook — in sport, cooking, traffic, electronics or the sky above you. An example you found yourself is remembered far longer than one you were given.
Ask Teacher Smith questions about this articleOpens your AI tutor with a question about “Linear-quadratic regulator rapidly exploring random tree” →

Affiliate

Preply — study more efficiently by working with a personal tutor. 50% off.

How to study Linear-quadratic regulator rapidly exploring random tree in 20 minutes

  1. Read the reference excerpt below once, without taking notes.
  2. Close the page and write down what Linear-quadratic regulator rapidly exploring random tree means in your own words.
  3. Compare your version with the excerpt and mark what you missed.
  4. Work through the three examples above with pen and paper.
  5. Explain Linear-quadratic regulator rapidly exploring random tree out loud to somebody else — or to Teacher Smith in the lgStudy chat.

Frequently asked questions

What is Linear-quadratic regulator rapidly exploring random tree in simple terms?

Linear-quadratic regulator rapidly exploring random tree (LQR-RRT) is a sampling based algorithm for kinodynamic planning. A solver is producing random actions which are forming a funnel in the state space.

Why does Linear-quadratic regulator rapidly exploring random tree matter?

Because it connects several computer science ideas at once: it gives you a definition you can apply, a quantity you can calculate, and a way to check whether a result is plausible.

How should I study Linear-quadratic regulator rapidly exploring random tree?

Read the excerpt, restate it from memory, then work through the examples and applications listed on this page. The five-step study plan above takes about twenty minutes.

What does this page cover?

It gives you a compact reference excerpt plus original lgStudy explanations, examples, applications and study material on Linear-quadratic regulator rapidly exploring random tree.

Tags

  • Optimal control
  • Search algorithms

Keep exploring