I am curious - If I had a text that I encrpyted with an affine cipher, would superencrypting with another affine cipher (after the first) increase the mathematical security in the final answer?
What if we encrpyted with affine first, then shift?
I think just two shifts would not increase security but I am not sure about these other two scenarios.
Well a shift is a type of affine cipher (just take $a=1$).
Let's look at what happens when we combine two affine substitutions:
After one we will get (for $a$ coprime to 26):
$x \mapsto ax + b \,\text{ mod }\, 26$
Then the next gives (for $a'$ coprime to 26):
$ax+b \mapsto a'(ax+b) + b' = (aa')x + a'b + b'\, \text{ mod }\, n$.
Note that $aa'$ will also be coprime to $n$ and so we just get another affine substitution! Doing multiple affine subs just gives another affine sub.