Language, L = { a^n b^n a^n ; n=1,2,3,.. }
I want to check whether the given language L is context free or not.
CFG make use of PDA which uses stacks. So, first store each 'a' to the stack. Then pop twice for each occurrence of 'b'. Is this logic correct?