I have $2$ languages, $L_1$ and $L_2$, both are part of $L$-dfa. I have the following language:
$$L_0= \{a_1\cdot b_1\cdot a_2\cdot b_2\cdot\ldots a_n\cdot b_n \mid a_i,b_i\in\Sigma, a_1,a_2,\ldots,a_n\in L_1, b_1,b_2,\ldots,b_n\in L_2\}$$
I need to build an automaton for $L_0$ so I can prove it is also a part of $L$-dfa.
My first hunch was to draw one, and try to work the drawing into an expression, but i'm running into trouble trying to draw it. Is there a good way to tackle such a question? If it was a simple automata, a drawing would be all I need to see the expression, but with something more complex as this, I am truly lost..
If I understand the question correctly, you can use a two state DFA:
Start------->Z for any $a_i \in L_1$
Z------->Start for any $b_i \in L_2$
Accept at the start state.