I want to know whether I solved this exercise correct or not. It would be cool if someone takes the time to look over it:
Let $(Y_i)$ be i.i.d. with Rademacher distribution and $x\in\mathbb{Z}$. Consider the Filtration $\mathcal{F}_n=\sigma(Y_1,\dots,Y_n)$ and the random variable $$X_n:=x+Y_1+\cdots + Y_n$$ Decide whether the following are Martingales or not:
- $X_n$
It's a martingale. Since $E(X_n)=x+\underbrace{1\cdot\frac{1}{2}-1\cdot\frac{1}{2}+\dots+1\cdot\frac{1}{2}-1\cdot\frac{1}{2}}_{n\ \text{times 0}}= x$ for ever $n\geq 0$
$$0=E(X_n)-E(X_{n+1})=\int\limits_{\Omega}X_n-E(X_{n+1}|\mathcal{F}_n) \mathrm{d}x$$ $$E(X_{n+1}|\mathcal{F}_n)=X_n\quad \text{a.s.}$$
- $M_n:=\prod_{k=1}^n Y_k$
It's a martingale. Then since $(Y_i)$ are i.i.d. $$E(X_{n+1}|\mathcal{F}_n)=E(X_{n+1})=0$$ So same argument as in number $(1)$
- $M_n:=X_n^2-n$
It's a submartingale. We already know that $X_n-n$ is a martingale and we now have a convext function $\phi(x,n)=x^2 -n$
$$E(X_n)-\phi (E(X_{n+1}|\mathcal{F}_n))\geq E(X_n) -E(\phi (X_{n+1})|\mathcal{F}_n) $$ $$X_n - \phi (E(X_{n+1}|\mathcal{F}_n)) \geq X_n - E(\phi(X_{n+1})|\mathcal{F}_n)$$ $$E(X_{n+1}^2-n+1|\mathcal{F_n})\geq X_n^2-n$$
- $M_n^\lambda:=e^{\lambda X_n-a(\lambda)n}$ for every $\lambda \in \mathbb{R}$ where $a(\lambda)=\log \cosh \lambda$
It's a submartingal. Then $$e^{\lambda X_n-a(\lambda)n}=\frac{e^{\lambda X_n}}{\cosh(\lambda)n}$$
Now I would say that this is also a convex function and therefore I have a submartingal too.
Thank you very much.