We assume $L$ is regular. Then by the pumping lemma we have a constant pumping length $p \ge 1$, on which the granted split
$$
aavau = x y z
$$
for all word $aavau \in L$ with $\lvert aavau \rvert \ge p$ will feature repetition within the first $p$ symbols in the sense of
$$
\forall i \in \mathbb{N}_0: \, x y^i z \in L \quad (*)
$$
where $\lvert x y \rvert \le p$ and $\lvert y \rvert \ge 1$.
$u$ and $v$ will feature only non-$a$ symbols, $v$ at least one, $u$ might be empty.
Let us examine the word
$$
w = aa\underbrace{b^{3p}}_va\underbrace{b^{2p}}_u\in L
$$
We have $\lvert w \rvert = 3 + 5p \ge p$, so the pumping lemma will grant the split
$$
w = x y z
$$
If $y$ contains an $a$, then $y^4$ will contain at least four of them breaking the $aavau$ pattern with exactly three $a$ symbols.
If $y$ contains a $b$ then $y$ will contain
- just part of the first group $b^{3p}$ or
- just part of the second group $b^{2p}$ or
- parts of both groups.
In the first or second case, repetition $y^i$ will affect only one group ($u$ or $v$) and the condition $3\lvert u \rvert_b = 2 \lvert v \rvert_b$, which links the number of $b$ symbols for both $u$ and $v$ will get violated for some $i$.
In the third case, the $a$ between the two groups will be contained in $y$ and thus again the pattern $aauav$ with excatly three $a$ symbols will be violated by $y^i$ for some $i$.
Thus $w \in L$ and $L$ assumed to be regular will imply (via the pumping lemma) that words outside the intended set of $L$ have to be elements of $L$, thus $L$ can not be regular.
u, vbe different? because when u putp = 1then u haveaabbbabbwhich is not true for the given condition since 3 != 2. I think the condition says multiplyvby 3 and multiplayuby 2 and get the same amount of b. So you choosed the word which is not from the language ? – kvway Dec 23 '16 at 14:10