Let $A$ be a set of strings on the alphabet ${a, b}$ starting with $a$ and ending with $b$ and they don't have occurrences of $ba$ as a substring. For example, $abab ̸∉ A$, $ab ∈ A$, $abb ∈ A$, $aabab ̸∉ A$, $aaab ∈ A$.
(i) Provide a recursive definition of A.
My attempt:
Base: $λ∈A$ (empty string)
Recursive Passage: ?
Please exaplin me how to do it.
The empty string is not in $A$, since any element of $A$ must start with $a$, and end with $b$.
A recursive specification for $A$ can be given as follows . . .