1

Write an induction definition for the set A={<a>, <b,a,b>,<a,b,a,b,a>, <b,a,b,a,b,a,b>,….}

basic: < a > ∈A

induction:if bxb∈A then a::bxb::a ∈A

if a::x then b::x::b ∈A

雨が好きな人
  • 2,555
  • 1
  • 8
  • 18
toby
  • 31

1 Answers1

2

Your definition seems to work, roughly. Your use of $x$ and $::$ seems a bit inconsistent though. Here’s another way of writing it that is a bit more precise.

Basis:

$\langle a \rangle \in A$

Inductive step:

$\langle a::x \rangle \in A \implies \langle b::a::x::b \rangle \in A$

$\langle b::x \rangle \in A \implies \langle a::b::x::a \rangle \in A$

雨が好きな人
  • 2,555
  • 1
  • 8
  • 18