English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Members of LN are as follows. < 1, 1 >, < 2, 2, 1, 1 >, < 3, 3, 2, 2, 1, 1>, < 4, 4, 3, 3, 2, 2, 1, 1> ... and so on.Give inductive definition of set LN. You may use cons, head, tail etc operations on a list.

2007-10-03 10:21:51 · 1 answers · asked by simonkf2002 1 in Science & Mathematics Mathematics

1 answers

Using + to denote list concatenation (and also addition, which meaning is intended should be clear from context):

L_1 = <1, 1>
L_(n+1) = + L_n

LN = {L_n: n∈N}

This what you were looking for?

2007-10-03 10:32:54 · answer #1 · answered by Pascal 7 · 0 0

fedest.com, questions and answers