Is this language context-free?
$$L = \{a^nb^nc^{2n} \mid n \ge 0\}$$
It's tricky in my opinion because I know that $a^nb^nc^n$ is not context-free, but can I determine from this that $L$ is not context-free, too?
Thanks in advance
EDIT: I can use these closures: all the closures of regular languages, the closure of intersection of regular language with a context-free language, and closure under homorphishms
So at the first time I end up answering my own question. Hope that I will get more chances such as those at the future to help others
Here it is:
Let's consider that this language IS context-free. We'll define a regular function F such that:
$F(c) = c' + c$
$ F(b) = b$
$F(a) = a$
So $F(L)$ is also context-free from closure to homomorphisms.
Now consider the language $L' = F(L) ∩ \{a^*b^*(cc')^*\}$, that's also context-free due to closure under intersection with regular.
Finally, define a function G such that:
$G(c') = \epsilon$
$G(a) = a$,
$ G(b) = b$,
$ G(c) = c$
So $G(L') = \{a^nb^nc^n\}$ is context-free. But we know it's not - BAM!
Therefore, $L$ is not context-free!