1

Let A be a totally ordered alphabet. Let L the lexicographic ordering on A*, and S the standard ordering on A*

A / L is well-founded and S is well-founded

B/ L is not well-founded and S is well-founded

C/ L is well-founded and S is not well-founded

D/ L is not well-founded and S is not well-founded

Is B the correct answer? If it is, can anyone please explain why?

Thank You

pkim
  • 89
  • 9

1 Answers1

2

It is unclear what you mean by standard order as opposed to lexicograpical order. I would have assumed the standard order on an alphabet was the lex-order. Presumably your standard order checks if one word is a prefix of another. That means standard order on the Latin alphabet works like sad $<$ saddle $<$ saddlebag $<$ saddlebags.

It's easy to see this is well-ordered because a descending chain has to decrease word length each step. So all descending chains are finite.

To see the lex-order is not well-founded consider the following infinite descending chain: $AC > ABC > ABBC > ABBBC > \ldots$. The set of all elements $AB \ldots B C$ has no minimal element.

Daron
  • 10,300