I need to draw a finite automata over the alphabet $\{a,b,c\}$, such that the following properties hold:
- a word starts with at most two $a$
- a $c$ is always followed by an even number of $b$ (0 included)
- each word has at least size $1$
I came up with the automata below, which is both incomplete (for example at state $4$ there is no transition for input $c$) and non-deterministic (at state $6$ for input $b$ the machine goes to states $4$, $7$).
It clearly accepts the words like $aa, baa, aacbbcbbbb$ that fit the above properties, but, I don't exactly know whether my automata is actually correct (meaning for any word that can be formulated from the above properties), and whether a simpler version of it can be devised, maybe even one that is complete and/or deterministic?

There is a mistake, you automaton does not recognize $abaa$ whereas it should. This can be fixed by making the $b$ transition from state $2$ (the "I started with an $a$" state) go to state $5$ (the "normal" state).
Also, I don't see the purpose of state $7$, it seems you could just add a self-transition on state $4$ with label $c$.
If you do that and add a "trash" state which you use for all transitions you did not write (to make it complete) you get a complete deterministic one with $7$ states.