Bit Strings: Recursive Definition

  • Thread starter Thread starter sta|ker
  • Start date Start date
  • Tags Tags
    Definition
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 2K views
sta|ker
Messages
12
Reaction score
0

Homework Statement


Give a recursive definition for the set
of bit strings [itex]\{ 0^{r} 1^{s} 0^{r} \| r, s \in N \}[/itex]. Note the number of 0’s must be equal, but the
number of 1’s may be different from the number of 0’s.

Homework Equations


N/A

The Attempt at a Solution


I believe this is:
Basis: [itex]\lambda \in A[/itex]
Recursive Step: If [itex]\omega \in A[/itex], then [itex]0 \omega 1 \omega 0 \in A[/itex]

I just want to verify if this is correct or not.

Thanks!
 
Physics news on Phys.org
Office_Shredder said:
If [itex]\omega = 010[/itex] then you just claimed that 001010100 is in A.

Ohh, I think I see. [itex]w[/itex] represents the initial value, which would basically make everything I put wrong. What about the following:

Basis: [itex]0 1^{n} 0 \in A , n \in N[/itex]
Recursive Step: if [itex]w \in A[/itex], then [itex]0 w 0 \in A[/itex]

Because, this would give: [itex]A = \{ 010, 00100, 001100, ... \}[/itex]