An introduction to discrete mathematics and its applications:
Gespeichert in:
1. Verfasser: | |
---|---|
Format: | Buch |
Sprache: | English |
Veröffentlicht: |
Reading, Mass. [u.a.]
Addison-Wesley
1986
|
Schlagworte: | |
Online-Zugang: | Inhaltsverzeichnis |
Beschreibung: | X, 486 S. Ill. |
ISBN: | 0201149478 |
Internformat
MARC
LEADER | 00000nam a2200000 c 4500 | ||
---|---|---|---|
001 | BV006536655 | ||
003 | DE-604 | ||
005 | 20121008 | ||
007 | t | ||
008 | 930210s1986 a||| |||| 00||| eng d | ||
020 | |a 0201149478 |9 0-201-14947-8 | ||
035 | |a (OCoLC)11649451 | ||
035 | |a (DE-599)BVBBV006536655 | ||
040 | |a DE-604 |b ger |e rakddb | ||
041 | 0 | |a eng | |
049 | |a DE-739 |a DE-634 |a DE-83 | ||
050 | 0 | |a QA76.9.M35 | |
082 | 0 | |a 510 |2 19 | |
084 | |a SK 110 |0 (DE-625)143215: |2 rvk | ||
084 | |a 68Exx |2 msc | ||
100 | 1 | |a Kalmanson, Kenneth |e Verfasser |4 aut | |
245 | 1 | 0 | |a An introduction to discrete mathematics and its applications |c Kenneth Kalmanson |
264 | 1 | |a Reading, Mass. [u.a.] |b Addison-Wesley |c 1986 | |
300 | |a X, 486 S. |b Ill. | ||
336 | |b txt |2 rdacontent | ||
337 | |b n |2 rdamedia | ||
338 | |b nc |2 rdacarrier | ||
650 | 4 | |a Informatique - Mathématiques | |
650 | 4 | |a Informatik | |
650 | 4 | |a Mathematik | |
650 | 4 | |a Computer science |x Mathematics | |
650 | 0 | 7 | |a Diskrete Mathematik |0 (DE-588)4129143-8 |2 gnd |9 rswk-swf |
689 | 0 | 0 | |a Diskrete Mathematik |0 (DE-588)4129143-8 |D s |
689 | 0 | |5 DE-604 | |
856 | 4 | 2 | |m HBZ Datenaustausch |q application/pdf |u http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=004164664&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |3 Inhaltsverzeichnis |
940 | 1 | |q TUB-nveb | |
999 | |a oai:aleph.bib-bvb.de:BVB01-004164664 |
Datensatz im Suchindex
_version_ | 1804120804447748096 |
---|---|
adam_text | CONTENTS
Chapter 1 SETS, NUMBERS, AND
ALGORITHMS 1
1.1 Defining Sets and Subsets 2
1.2 Sets and Functions 9
1.3 Sums and Algorithms 16
1.4 Integers and Algorithms 24
1.5 Rational and Real Numbers 31
1.6 Other Systems of Numeration 39
1.7 Binary Arithmetic and Two s Complements 47
1.8 Modular Arithmetic 54
Computer Programming Exercises 63
Chapter 2 SETS, LOGIC, AND COMPUTER
ARITHMETIC 65
2.1 Examples, Counterexamples, and Mathematical Induction 66
2.2 Set Operations 73
2.3 The Algebra of Set Operations 82
2.4 Truth Sets and Truth Tables 88
vii
viii CONTENTS
2.5 Laws of Logic and Rules of Reasoning 96
2.6 Logic Gates and Computer Arithmetic 103
Computer Programming Exercises 112
Chapter 3 COUNTING 115
3.1 The Multiplication Principle and Permutations 116
3.2 Combinations and Binomial Coefficients 124
3.3 Repetitions and Partitions 130
3.4 Inclusion Exclusion 136
3.5 Applications of Counting from Probability to
Pigeonholes 143
3.6 Recurrence Models 150
3.7 Closed Forms and Analysis of Algorithms 158
3.8 Divide And Conquer Relations 167
Computer Programming Exercises 173
Chapter 4 INTRODUCTION TO GRAPH
THEORY 175
4.1 Graphs and Walks 176
4.2 Classification of Graphs 187
4.3 Planar Graphs and Euler s Formula 197
4.4 Graph Coloring 205
4.5 Multigraphs and Matrices 212
4.6 Matrix Multiplication and Connectedness 220
Computer Programming Exercises 229
Chapter 5 TREES AND ALGORITHMS 231
5.1 Weighted Graphs and the Connector Problem 232
5.2 The Shortest Path Problem 242
5.3 Rooted Trees and Polish Notation 250
5.4 Binary Search Trees 261
Computer Programming Exercises 267
CONTENTS ix
Chapter 6 DIRECTED GRAPHS AND
NETWORKS 269
6.1 Digraphs 270
6.2 Orientable Graphs and Topological Sorting 279
6.3 Activity Analysis and Longest Paths 288
6.4 Transport Networks 296
6.5 Maximal Matchings 307
Computer Programming Exercises 313
Chapter 7 APPLIED MODERN ALGEBRA 315
7.1 Relations 316
7.2 Equivalence Relations and Partitions 326
7.3 Partial Orderings and Dilworth s Theorem 336
7.4 Lattices 342
7.5 Boolean Algebras 351
7.6 Minimization and Switching Circuits 360
7.7 Groups 370
7.8 Group Codes 377
Computer Programming Exercises 383
Chapter 8 FURTHER TOPICS IN COUNTING
AND RECURSION 385
8.1 Homogeneous Linear Recurrence Relations 386
8.2 The Nonhomogeneous Case 393
8.3 Generating Functions and Recurrence Relations 398
8.4 Generating Functions and Counting 410
Computer Programming Exercises 419
Appendix PROGRAMS IN BASIC AND
EXERCISES 421
Al BASIC Statements 422 A6 PRIMETEST 427
A2 More BASIC Statements 423 A7 SIEVE 428
A3 FIBONACCI 425 A8 PARTITION 429
A4 NESTED POLY 1 426 A9 SETS AND BINARY 430
A5 NESTED POLY 2 426 A10 N FACTORIAL 431
x CONTENTS
All BINOMIAL 431 A19 EULER T/C 440
A12 BIRTHDAY 432 A20 MIN COST TREE 442
A13 BUBLSORT 433 A21 DFS SPAN TREE 445
A14 MATRIX ARRAY 434 A22 TOPL SORT 446
A15 MATRIX ADD 434 A23 TRANS TEST 448
A16 MATMULT 435 A24 SYMTRANSTEST 449
A17 VERTEX DEG 437 A25 LOGIC TABLE 450
A18 PATH MATRIX 438
Bibliography 453
Answers to Selected Exercises 455
Index 483
|
any_adam_object | 1 |
author | Kalmanson, Kenneth |
author_facet | Kalmanson, Kenneth |
author_role | aut |
author_sort | Kalmanson, Kenneth |
author_variant | k k kk |
building | Verbundindex |
bvnumber | BV006536655 |
callnumber-first | Q - Science |
callnumber-label | QA76 |
callnumber-raw | QA76.9.M35 |
callnumber-search | QA76.9.M35 |
callnumber-sort | QA 276.9 M35 |
callnumber-subject | QA - Mathematics |
classification_rvk | SK 110 |
ctrlnum | (OCoLC)11649451 (DE-599)BVBBV006536655 |
dewey-full | 510 |
dewey-hundreds | 500 - Natural sciences and mathematics |
dewey-ones | 510 - Mathematics |
dewey-raw | 510 |
dewey-search | 510 |
dewey-sort | 3510 |
dewey-tens | 510 - Mathematics |
discipline | Mathematik |
format | Book |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>01449nam a2200409 c 4500</leader><controlfield tag="001">BV006536655</controlfield><controlfield tag="003">DE-604</controlfield><controlfield tag="005">20121008 </controlfield><controlfield tag="007">t</controlfield><controlfield tag="008">930210s1986 a||| |||| 00||| eng d</controlfield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">0201149478</subfield><subfield code="9">0-201-14947-8</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)11649451</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(DE-599)BVBBV006536655</subfield></datafield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">DE-604</subfield><subfield code="b">ger</subfield><subfield code="e">rakddb</subfield></datafield><datafield tag="041" ind1="0" ind2=" "><subfield code="a">eng</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-739</subfield><subfield code="a">DE-634</subfield><subfield code="a">DE-83</subfield></datafield><datafield tag="050" ind1=" " ind2="0"><subfield code="a">QA76.9.M35</subfield></datafield><datafield tag="082" ind1="0" ind2=" "><subfield code="a">510</subfield><subfield code="2">19</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">SK 110</subfield><subfield code="0">(DE-625)143215:</subfield><subfield code="2">rvk</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">68Exx</subfield><subfield code="2">msc</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Kalmanson, Kenneth</subfield><subfield code="e">Verfasser</subfield><subfield code="4">aut</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">An introduction to discrete mathematics and its applications</subfield><subfield code="c">Kenneth Kalmanson</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Reading, Mass. [u.a.]</subfield><subfield code="b">Addison-Wesley</subfield><subfield code="c">1986</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">X, 486 S.</subfield><subfield code="b">Ill.</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="b">n</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="b">nc</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Informatique - Mathématiques</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Informatik</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Mathematik</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Computer science</subfield><subfield code="x">Mathematics</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Diskrete Mathematik</subfield><subfield code="0">(DE-588)4129143-8</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="689" ind1="0" ind2="0"><subfield code="a">Diskrete Mathematik</subfield><subfield code="0">(DE-588)4129143-8</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2=" "><subfield code="5">DE-604</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">HBZ Datenaustausch</subfield><subfield code="q">application/pdf</subfield><subfield code="u">http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=004164664&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA</subfield><subfield code="3">Inhaltsverzeichnis</subfield></datafield><datafield tag="940" ind1="1" ind2=" "><subfield code="q">TUB-nveb</subfield></datafield><datafield tag="999" ind1=" " ind2=" "><subfield code="a">oai:aleph.bib-bvb.de:BVB01-004164664</subfield></datafield></record></collection> |
id | DE-604.BV006536655 |
illustrated | Illustrated |
indexdate | 2024-07-09T16:47:54Z |
institution | BVB |
isbn | 0201149478 |
language | English |
oai_aleph_id | oai:aleph.bib-bvb.de:BVB01-004164664 |
oclc_num | 11649451 |
open_access_boolean | |
owner | DE-739 DE-634 DE-83 |
owner_facet | DE-739 DE-634 DE-83 |
physical | X, 486 S. Ill. |
psigel | TUB-nveb |
publishDate | 1986 |
publishDateSearch | 1986 |
publishDateSort | 1986 |
publisher | Addison-Wesley |
record_format | marc |
spelling | Kalmanson, Kenneth Verfasser aut An introduction to discrete mathematics and its applications Kenneth Kalmanson Reading, Mass. [u.a.] Addison-Wesley 1986 X, 486 S. Ill. txt rdacontent n rdamedia nc rdacarrier Informatique - Mathématiques Informatik Mathematik Computer science Mathematics Diskrete Mathematik (DE-588)4129143-8 gnd rswk-swf Diskrete Mathematik (DE-588)4129143-8 s DE-604 HBZ Datenaustausch application/pdf http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=004164664&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA Inhaltsverzeichnis |
spellingShingle | Kalmanson, Kenneth An introduction to discrete mathematics and its applications Informatique - Mathématiques Informatik Mathematik Computer science Mathematics Diskrete Mathematik (DE-588)4129143-8 gnd |
subject_GND | (DE-588)4129143-8 |
title | An introduction to discrete mathematics and its applications |
title_auth | An introduction to discrete mathematics and its applications |
title_exact_search | An introduction to discrete mathematics and its applications |
title_full | An introduction to discrete mathematics and its applications Kenneth Kalmanson |
title_fullStr | An introduction to discrete mathematics and its applications Kenneth Kalmanson |
title_full_unstemmed | An introduction to discrete mathematics and its applications Kenneth Kalmanson |
title_short | An introduction to discrete mathematics and its applications |
title_sort | an introduction to discrete mathematics and its applications |
topic | Informatique - Mathématiques Informatik Mathematik Computer science Mathematics Diskrete Mathematik (DE-588)4129143-8 gnd |
topic_facet | Informatique - Mathématiques Informatik Mathematik Computer science Mathematics Diskrete Mathematik |
url | http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=004164664&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |
work_keys_str_mv | AT kalmansonkenneth anintroductiontodiscretemathematicsanditsapplications |