$T(0)=1 \\ T(n) = 1 + \sum_{j=0}^{n-1}T(j) \\ $
Show that $T(n) = 2^n$.
I know how to prove this by induction, but I would like to know how to show this using first principles.
Edit: The way I want to solve this problem is manipulate $T(n)$ in such a way that it ends up as $2^n$.
Clearly, $$T(n+1)=1+T(n)+\sum_{j=0}^{n-1}T(j)=T(n)+T(n)=2T(n)$$ So, $(T(n))_n$ is a geometric progression with common ratio $2$ and starts at $1$. That is $T(n)=2^n$.