How can I approach recurrence relations such as the following, where the recurrence is being broken down into 1-2 different terms? I'm also not sure if I phrased this right so correct me if I'm wrong.
e.g. something like the following: $T(n) = T(\frac{n}{2}) + T(\frac{n}{3})$
My current thoughts are to start by drawing it out for a small case, but then I get a little stuck/confused on how to build it back up.
Also, are there any general resources or advice for building intuition on recurrence relations? I feel like I'm lacking the intuition to truly understand recurrences and this is not the first time this is happening (I also struggled in another math course which had a few recurrences), so I'd like to have a more complete understanding of the topic. If you know something that might help, it'd be great. Thanks!