answer: The transition table for the next-state values of uv is:
next uv abuv 00 01 11 10reset 00 00 00 01 01run 01 01 11 01 01stop 11 10 11 01 01stop2 10 10 00 01 01
The Karnaugh maps are taken from this table by splitting the left and right columns apart:
next u abuv 00 01 11 1000 0 0 0 001 0 1 0 011 1 1 0 010 1 0 0 0
next v abuv 00 01 11 1000 0 0 1 101 1 1 1 111 0 1 1 110 0 0 1 1
From the Karnaugh maps we get: next u = a'b'u + a'bv, next v = a + u'v + bv