Questions: Trajectory Planning and Motion Planning

2 questions to test your understanding

Score: 0 / 2
Question 1 Multiple Choice

A robot must move from configuration A to configuration B. Joint-space trajectory planning connects A and B with a cubic polynomial: θ(t) = θ₀ + (3/t_f²)·(t_f - t)·(θ_f - θ₀)·t - (2/t_f³)·(t_f - t)·t²·(θ_f - θ₀). At the start (t=0) and end (t=t_f), the velocity is zero. Why is this constraint important?

ATo ensure the robot doesn't move too fast, which would damage it
BTo ensure the trajectory starts and ends with zero velocity (smooth starts and stops), preventing jerk and mechanical stress
CTo ensure the trajectory passes through the intermediate configuration θ_mid at t = t_f/2
DTo ensure the robot doesn't hit obstacles at the beginning and end of the motion
Question 2 True / False

A path-planning algorithm finds a collision-free path from start to goal, but doesn't account for dynamics. In the context of real robot execution, what additional check is needed?

TTrue
FFalse