I have a question. Given the following grammar: $$S \to ABC$$ $$A \to aA| \varnothing$$ $$B \to bB|a$$ $$C \to bCb|aCb|\varnothing$$
I found that its Chomsky form is: $$S \to AS'|BC|AB|VB|a$$ $$S' \to BC$$ $$A \to UA'|UU$$ $$A' \to AU$$ $$B \to VB|b$$ $$C \to VC'|UC'|VV|UV$$ $$C' \to CV$$ $$U \to a$$ $$V \to b$$}
I want to make a syntax analysis of the expression $aabaaabb$. But...how can I do this?