What you learned:
Interval DP uses to represent answers for ranges .
The recurrence focuses on endpoints: do they match or not?
Iteration order matters: compute shorter ranges before longer ones.
Not all interval DP needs split point enumeration. LPS is the simplest form. Next, you'll see Matrix Chain Multiplication, where we do need to try all split points. But now you understand the interval structure.