Recurrence Relation that has a square root

73 Views Asked by At

I can't seem to solve this recurrence relation found in a revision sheet:

$$T(n) = T(n/2) + T(\sqrt{n}) + n.$$