W. Richard Stark
LISP, Lore, and Logic
An Algebraic View of LISP Programming, Foundations, and Applications
W. Richard Stark
LISP, Lore, and Logic
An Algebraic View of LISP Programming, Foundations, and Applications
- Broschiertes Buch
- Merkliste
- Auf die Merkliste
- Bewerten Bewerten
- Teilen
- Produkt teilen
- Produkterinnerung
- Produkterinnerung
Here is a presentation of LISP which is both practical and theoretical. For the practical, the syntax of the language, the programming styles, and the semantics of computation are carefully developed. For the theoretical, the algebra of interpreters, the lambda calculus as a foundation for LISP, and the algebraic significance of LISP's approach to artificial intelligence are discussed. As the title suggests, the book reaches beyond the technical side of LISP to present colorful applications, historical comments and quotations, computational philosophy, consequences of LISP's exceptional power,…mehr
Andere Kunden interessierten sich auch für
- Martin S. DawePROLOG for Computer Science41,99 €
- Thaddeus J. KowalskiRule-Based Programming187,99 €
- Norman D. ThomsonAPL Programs for the Mathematics Classroom42,99 €
- William F. ClocksinClause and Effect61,99 €
- Zhong Shao (ed.)Programming Languages and Systems42,99 €
- Programming Languages and Systems41,99 €
- Functional and Constraint Logic Programming42,99 €
-
-
-
Here is a presentation of LISP which is both practical and theoretical. For the practical, the syntax of the language, the programming styles, and the semantics of computation are carefully developed. For the theoretical, the algebra of interpreters, the lambda calculus as a foundation for LISP, and the algebraic significance of LISP's approach to artificial intelligence are discussed. As the title suggests, the book reaches beyond the technical side of LISP to present colorful applications, historical comments and quotations, computational philosophy, consequences of LISP's exceptional power, and much more. The material has been designed to appeal to a variety of readers, from the bright freshman to the practicing professional, and from computer scientists and mathematicians to chemists, engineers, and philosophers.
Hinweis: Dieser Artikel kann nur an eine deutsche Lieferadresse ausgeliefert werden.
Hinweis: Dieser Artikel kann nur an eine deutsche Lieferadresse ausgeliefert werden.
Produktdetails
- Produktdetails
- Verlag: Springer / Springer New York / Springer, Berlin
- Artikelnr. des Verlages: 978-0-387-97072-1
- 1990.
- Seitenzahl: 300
- Erscheinungstermin: 20. Februar 1990
- Englisch
- Abmessung: 235mm x 155mm x 17mm
- Gewicht: 457g
- ISBN-13: 9780387970721
- ISBN-10: 038797072X
- Artikelnr.: 24546722
- Verlag: Springer / Springer New York / Springer, Berlin
- Artikelnr. des Verlages: 978-0-387-97072-1
- 1990.
- Seitenzahl: 300
- Erscheinungstermin: 20. Februar 1990
- Englisch
- Abmessung: 235mm x 155mm x 17mm
- Gewicht: 457g
- ISBN-13: 9780387970721
- ISBN-10: 038797072X
- Artikelnr.: 24546722
1 A First Look at LISP.- 1.1 The origins of LISP.- 1.2 A glimpse into the structure of LISP.- 1.2.1 Data.- 1.2.2 Functions.- 1.2.3 Expressions in the language.- 1.2.4 Quote.- 1.2.5 Logical terms.- 1.2.6 Branching in computations.- 1.2.7 Lambda functions.- 1.2.8 Assignments.- 1.3 Additional reading.- 2 Elementary Programming.- 2.1 Programming straightforward computations.- 2.2 Recursive and iterative computations.- 2.2.1 A general view of recursion.- 2.2.2 Programming recursive computations.- 2.2.3 Rules for recursive programming.- 2.2.4 Iteration.- 2.3 External files.- 2.4 Searching.- 2.4.1 Is searching a sign of ignorance?.- 2.4.2 Kinds of search.- 2.5 Extra variables and functions, for efficiency.- 2.6 Other list functions.- 2.6.1 MEMBER and more.- 2.6.2 Functions for association lists.- 2.6.3 Example: translation between Inuit and English.- 2.7 The fixed-point style of computation.- 2.8 Input and output.- 2.9 The procedural and functional styles of computation.- 2.10 Additional reading.- 3 Deeper into Essential Structure.- 3.1 LISP'S data.- 3.1.1 S-expressions.- 3.1.2 Representations of data.- 3.1.3 Atoms.- 3.1.4 Data types.- 3.2 Another look at familiar functions.- 3.2.1 CAR, CDR, and CONS: an alternate semantics.- 3.2.2 EQ and EQUAL.- 3.2.3 Options for LAMBDA functions.- 3.2.4 SETF.- 3.3 LISP syntax in detail.- 3.3.1 Terms.- 3.3.2 Variables and forms.- 3.3.3 Syntax puzzles.- 3.4 Self-processing.- 3.5 Bindings, scopes, and environments.- 3.6 Additional reading.- 4 Computational Philosophy.- 4.1 Models of computation.- 4.1.1 Mathematical formalisms for computation.- 4.1.2 Church's thesis and computational completeness.- 4.2 Pure LISP.- 4.3 Types of recursion.- 4.3.1 Fat recursion and tail recursion.- 4.3.2 Compound recursion.- 4.3.3 Monotonic and nonmonotonic recursion.- 4.4 The limits of LISP: an unsolvable problem.- 4.5 The folklore of fixed-point computation.- 4.6 Additional Reading.- 5 LISP Functions for Powerful Programming.- 5.1 Debugging tools.-
1 A First Look at LISP.- 1.1 The origins of LISP.- 1.2 A glimpse into the structure of LISP.- 1.3 Additional reading.- 2 Elementary Programming.- 2.1 Programming straightforward computations.- 2.2 Recursive and iterative computations.- 2.3 External files.- 2.4 Searching.- 2.5 Extra variables and functions, for efficiency.- 2.6 Other list functions.- 2.7 The fixed-point style of computation.- 3 Deeper into Essential Structure.- 3.1 LISP'S data.- 3.2 Another look at familiar functions.- 3.3 LISP syntax in detail.- 3.4 Self-processing.- 3.5 Bindings, scopes, and environments.- 3.6 Additional reading.- 4 Computational Philosophy.- 4.1 Models of computation.- 4.2 Pure LISP.- 4.3 Types of recursion.- 4.4 The limits of LISP: an unsolvable problem.- 4.5 The folklore of fixed-point computation.- 4.6 Additional Reading.- 5 LISP Functions for Powerful Programming.- 5.1 Debugging tools.- 5.2 Applicative operators.- 5.3 Macros.- 5.4 Structures, vectors, and arrays.- 5.5 Function closures.- 5.6 COERCion.- 5.7 Surgical operations.- 6 Interpreters: from Algebra to LISP.- 6.1 Algebras and interpreting: an abstract view.- 6.2 LISP interpreters.- 6.3 Compiled LISP.- 7 Mathematical Foundations of LISP.- 7.1 The lambda calculus defined.- 7.2 Straightforward computation in the lambda calculus.- 7.3 Fixed-points for object functions.- 7.4 Recursive functions in the lambda calculus.- 7.5 Pure LISP in the lambda calculus.- 7.6 Additional reading.- 8 Automatic Reasoning, Algebraic Intelligence.- 8.1 Logics.- 8.2 Predicate logic and unification.- 8.3 Prolog.- 8.4 Speculation on algebraic intelligence.- 8.5 Additional reading.- 9 Bibliography.- 10 Answers to Selected Exercises.- 11 Index.
1 A First Look at LISP.- 1.1 The origins of LISP.- 1.2 A glimpse into the structure of LISP.- 1.2.1 Data.- 1.2.2 Functions.- 1.2.3 Expressions in the language.- 1.2.4 Quote.- 1.2.5 Logical terms.- 1.2.6 Branching in computations.- 1.2.7 Lambda functions.- 1.2.8 Assignments.- 1.3 Additional reading.- 2 Elementary Programming.- 2.1 Programming straightforward computations.- 2.2 Recursive and iterative computations.- 2.2.1 A general view of recursion.- 2.2.2 Programming recursive computations.- 2.2.3 Rules for recursive programming.- 2.2.4 Iteration.- 2.3 External files.- 2.4 Searching.- 2.4.1 Is searching a sign of ignorance?.- 2.4.2 Kinds of search.- 2.5 Extra variables and functions, for efficiency.- 2.6 Other list functions.- 2.6.1 MEMBER and more.- 2.6.2 Functions for association lists.- 2.6.3 Example: translation between Inuit and English.- 2.7 The fixed-point style of computation.- 2.8 Input and output.- 2.9 The procedural and functional styles of computation.- 2.10 Additional reading.- 3 Deeper into Essential Structure.- 3.1 LISP'S data.- 3.1.1 S-expressions.- 3.1.2 Representations of data.- 3.1.3 Atoms.- 3.1.4 Data types.- 3.2 Another look at familiar functions.- 3.2.1 CAR, CDR, and CONS: an alternate semantics.- 3.2.2 EQ and EQUAL.- 3.2.3 Options for LAMBDA functions.- 3.2.4 SETF.- 3.3 LISP syntax in detail.- 3.3.1 Terms.- 3.3.2 Variables and forms.- 3.3.3 Syntax puzzles.- 3.4 Self-processing.- 3.5 Bindings, scopes, and environments.- 3.6 Additional reading.- 4 Computational Philosophy.- 4.1 Models of computation.- 4.1.1 Mathematical formalisms for computation.- 4.1.2 Church's thesis and computational completeness.- 4.2 Pure LISP.- 4.3 Types of recursion.- 4.3.1 Fat recursion and tail recursion.- 4.3.2 Compound recursion.- 4.3.3 Monotonic and nonmonotonic recursion.- 4.4 The limits of LISP: an unsolvable problem.- 4.5 The folklore of fixed-point computation.- 4.6 Additional Reading.- 5 LISP Functions for Powerful Programming.- 5.1 Debugging tools.-
1 A First Look at LISP.- 1.1 The origins of LISP.- 1.2 A glimpse into the structure of LISP.- 1.3 Additional reading.- 2 Elementary Programming.- 2.1 Programming straightforward computations.- 2.2 Recursive and iterative computations.- 2.3 External files.- 2.4 Searching.- 2.5 Extra variables and functions, for efficiency.- 2.6 Other list functions.- 2.7 The fixed-point style of computation.- 3 Deeper into Essential Structure.- 3.1 LISP'S data.- 3.2 Another look at familiar functions.- 3.3 LISP syntax in detail.- 3.4 Self-processing.- 3.5 Bindings, scopes, and environments.- 3.6 Additional reading.- 4 Computational Philosophy.- 4.1 Models of computation.- 4.2 Pure LISP.- 4.3 Types of recursion.- 4.4 The limits of LISP: an unsolvable problem.- 4.5 The folklore of fixed-point computation.- 4.6 Additional Reading.- 5 LISP Functions for Powerful Programming.- 5.1 Debugging tools.- 5.2 Applicative operators.- 5.3 Macros.- 5.4 Structures, vectors, and arrays.- 5.5 Function closures.- 5.6 COERCion.- 5.7 Surgical operations.- 6 Interpreters: from Algebra to LISP.- 6.1 Algebras and interpreting: an abstract view.- 6.2 LISP interpreters.- 6.3 Compiled LISP.- 7 Mathematical Foundations of LISP.- 7.1 The lambda calculus defined.- 7.2 Straightforward computation in the lambda calculus.- 7.3 Fixed-points for object functions.- 7.4 Recursive functions in the lambda calculus.- 7.5 Pure LISP in the lambda calculus.- 7.6 Additional reading.- 8 Automatic Reasoning, Algebraic Intelligence.- 8.1 Logics.- 8.2 Predicate logic and unification.- 8.3 Prolog.- 8.4 Speculation on algebraic intelligence.- 8.5 Additional reading.- 9 Bibliography.- 10 Answers to Selected Exercises.- 11 Index.