SICP 1 Flashcards
What are three mechanisms a programming language has for combining simple ideas to make complex ones?
Primitive expressions, means of combination, means of abstraction
What are the two elements we deal with in programming?
procedures and data
What should a powerful programming language be able to describe and have methods for?
Describing primitive data and procedures, and methods for combining and abstracting procedures and data
What do we focus on in chapter 1 of SICP?
Simple numerical data so we can focus on the rules for building procedures.
What does an interpreter do when you type an expression?
Displays the result of evaluating that expression
Name a primitive expression
a number
What can expressions representing a number be combined with?
An expression representing a primitive procedure to form a compound expression that represents the application of the procedure to those numbers
What are combinations?
Expressions formed by delimiting a list of expressions to denote procedure application.
WHat is the leftmost and other expressions called.
Operator and operands
how is the value of a combination obtained?
By applying the procedure specified by the operator to the arguments that are the values of the operands
What does a name do?
A name identifies a variable whose value is the object
Why is define the simplest method of abstraction?
It allows us to use simple names
Why is abstraction useful?
Computational objects may have complex structures and it would be inconvenient to have to remember and repeat their details every time we use them.
What is the memory called that contains the name-object pairs?
The global environment
What is one of our goals for this chapter?
To isolate issues about thinking procedurally
What is the interpreter doing while evaluating expressions?
Following a procedure
Describe how to evaluate a combination
1 Evaluate the subexpressions of the combination 2 apply the procedure that is the value of the operator to the arguments that are the values of the operands
What makes the evaluation rule recursive in nature
It includes as one of its steps the need to invoke itself
What are exceptions to the general evaluation rule called
special forms
What are procedure definitions?
A much more powerful abstraction technique by which a compound operations can be given a name and then referred to as a unit.
What is the aplplication process for compound procedures?
To apply a compound procedure to arguments, evaluate the body of the procedure with each formal parameter replaced by the corresponding argument
What is the first process for procedure application called?
the substitution model for procedure application`
What is the fully expand and reduce evaluation method called?
Normal order evaluation
What is the evaluate the arguments and then apply method called?
Applicative order evalation.
What is the lisp form for notating a case analysis?
cond
What are procedures similar to in maths?
mathematical functions
\What is the contrast between function and procedure?
Distinction between declarative(what is) vs imperative (how to) knowledge
WHat doi we call it when we see a procedure as a black box?
A procedural abstraction
What is a formal parameter called that doesnt matter what name the formal parameter has?
A bound varibale, and we say the procedure definition binds its formal parameters.
If a variable is not bound …?
It is free
The set of expressions for which a binding defines a name is a ?
scope
What is nesting of definitions called?
Block structure
what is lexical scoping
When we allow x to be a free variable in the internal defintions.
What is a procedure?
A patttern for the local evolution of a process.
What do we do in 1.2 of |SICP
We would like to be able to make statements about the overall or global behaviour or a process whos evoolurtion has been specified by a procedure.
What characterises linear recursion>
A shape of expansion and contraction. The expansion occurs as the process builds up a chain of derred operations. The contractions happen when the operations are actually performed. Carrying out this process requires that the interpreter keeo track of the operations to be performed later on. The length of the chain of deffered multipolpications and hence the amount od information needed to keep traack of it grows linearly with n.
What characterises a linear iterative process?
State can be summarised by a number of state varibales together with a fixed rule that describes how the state variables should be updated as the process movfes from state to state.
WHen we descibe a procedure as recursive?
we are referring to the syntactic fact that the procedure definition refers to the procedure itself.
When we describe a process as recursive?
We are speaking about how to process evolbes
What are procedures in effect?
Abstractions that descirbe compound operations on numbers independent of their particular numbers
What are higher order procedures?
procedures that manipulate procedures
What does lambda do?
It creates procedures?
what does (lambda (x) (+ 4 x)) mean?
Create the procedure that returns the number plus 4.
What is the difference between lambda and define?
No name is specified for the procedure
What is let used for?
Creating local variables
What doies the ability to pass procedures as arguments do?
it enhances the expressive power of our programming language.
How do we create even more expressive power>
By creating procedures whose returned values are themselves procedures.
What happens when we express a procedure in terms of these abstractions?
The idea becomes clearer
WHat should programmers be alert to? (abstractions)
Identify the underlying abstractions in our programs and build on them and generalise them to create more powerful abstractions
WHat did we do in chapter 1
How to use primitve data and operations. How to combine proedures to form compound procedure through composition, conditionals and the use of parameters, and how to abstract procedures using define. WE saw that a procedure can be regarderd as a pattern for the local evolution of a process and we claassified reasoned about and performed simple algorithmic analysis of some common patterns for procedures. We alois saw that higher order procedures enhance the power of our langaugae by enabling us to manipulate and then reaspn in terms of general methods of computation.
WHat did we do in chapter 1
How to use primitve data and operations. How to combine proedures to form compound procedure through composition, conditionals and the use of parameters, and how to abstract procedures using define. WE saw that a procedure can be regarderd as a pattern for the local evolution of a process and we claassified reasoned about and performed simple algorithmic analysis of some common patterns for procedures. We alois saw that higher order procedures enhance the power of our langaugae by enabling us to manipulate and then reaspn in terms of general methods of computation.