Computer Science Syllabus
Computer Science Syllabus
Contents
Introduction to Part IA 4
Entry to the Computer Science Tripos . . . . . . . . . . . . . . . . . . . . . . . . 4
Computer Science Tripos Part IA . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
Natural Sciences Part IA students . . . . . . . . . . . . . . . . . . . . . . . . . . 4
Psychological and Behavioural Sciences students . . . . . . . . . . . . . . . . . 4
The curriculum . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
Introduction to Part IB 30
Introduction to Part II 73
Introduction to Part IA
The only essential GCE A level for admission to Cambridge to read for the Computer
Science Tripos is Mathematics. Also desirable are Further Mathematics and a physical
science (Physics, Chemistry or Geology) at A level, or at AS level if not taken at A level.
Some colleges may ask candidates to take the Advanced Extension Award or STEP
papers in Mathematics.
Part IA students taking the 75% Computer Science option will attend all lectures for
Papers 1, 2 and 3. In addition they attend the Mathematics course offered for Part IA of the
Natural Sciences Tripos (NST).
Students taking the 50% Computer Science option will take one of the following:
Part IA students accepted to read Computer Science with Mathematics will attend the
lectures for Papers 1 and 2 of the Computer Science Tripos in addition to Papers 1 and 2
of Part IA of the Mathematical Tripos.
Part IA students who take either a Natural Science option selected from Chemistry,
Evolution and Behaviour, Earth Sciences, Physics, and Physiology of Organisms or
Paper 1 of Part IA of the Psychological and Behavioural Sciences Tripos (PBST) will
attend Papers 1 and 2 of the Computer Science Tripos as well as the Mathematics course
offered for Part IA of the Natural Sciences Tripos (NST).
There is no A level requirement for Paper I of the PBST Tripos. An A level in a science
subject is desirable for students taking an NST option. Computer Science students taking
an NST option are expected to undertake practical work on the same basis as for the
Natural Science Tripos.
There is a Computer Science option in the first year of the Natural Sciences Tripos,
counting as one quarter of the year’s work. Students taking this option attend all the
lectures and practicals for Paper 1.
The curriculum
This document lists the courses offered by the Computer Laboratory for Papers 1, 2 and 3
of Part IA of the Computer Science Tripos. Separate booklets give details of the syllabus
for the second- and third-year courses in Computer Science.
The syllabus information given here is for guidance only and should not be considered
definitive. Current timetables can be found at
http://www.cl.cam.ac.uk/teaching/timetables/
For most of the courses listed below, a list of recommended books is given. These are
roughly in order of usefulness, and lecturers have indicated by means of an asterisk those
books which are most recommended for purchase by College libraries.
The Computer Laboratory Library aims to keep at least one copy of each of the course
texts in “The Booklocker” (see http://www.cl.cam.ac.uk/library/).
For further copies of this booklet and for answers to general enquiries about Computer
Science courses, please get in touch with:
Teaching Administrator
University of Cambridge
Computer Laboratory
William Gates Building
J J Thomson Avenue
Cambridge
CB3 0FD
Aims
The main aim of this course is to present the basic principles of programming. As the
introductory course of the Computer Science Tripos, it caters for students from all
backgrounds. To those who have had no programming experience, it will be
comprehensible; to those experienced in languages such as C, it will attempt to correct
any bad habits that they have learnt.
A further aim is to introduce the principles of data structures and algorithms. The course
will emphasise the algorithmic side of programming, focusing on problem-solving rather
than on hardware-level bits and bytes. Accordingly it will present basic algorithms for
sorting, searching, etc., and discuss their efficiency using O-notation. Worked examples
(such as polynomial arithmetic) will demonstrate how algorithmic ideas can be used to
build efficient applications.
The course will use a functional language (ML). ML is particularly appropriate for
inexperienced programmers, since a faulty program cannot crash and ML’s unobtrusive
type system captures many program faults before execution. The course will present the
elements of functional programming, such as curried and higher-order functions. But it will
also introduce traditional (procedural) programming, such as assignments, arrays and
references.
Lectures
• Lists. Basic list operations. Append. Naı̈ve versus efficient functions for length and
reverse. Strings.
• More on lists. The utilities take and drop. Pattern-matching: zip, unzip. A word on
polymorphism. The “making change” example.
Computer Science Tripos Part IA 7
• Queues and search strategies. Depth-first search and its limitations. Breadth-first
search (BFS). Implementing BFS using lists. An efficient representation of queues.
Importance of efficient data representation.
Objectives
• know the comparative advantages of insertion sort, quick sort and merge sort;
Recommended reading
* Paulson, L.C. (1996). ML for the working programmer. Cambridge University Press
(2nd ed.).
Okasaki, C. (1998). Purely functional data structures. Cambridge University Press.
For reference only:
Gansner, E.R. & Reppy, J.H. (2004). The Standard ML Basis Library. Cambridge
University Press. ISBN: 0521794781
Aims
Lecture syllabus
• Java Collections and Object Comparison Java Collection interface. Key classes.
Collections class. Iteration options and the use of Iterator. Comparing primitives and
objects. Operator overloading.
• Copying Objects. Shallow and deep copies. Copy constructors. Cloning in Java.
Cloneable as a marker interface in Java.
Objectives
• be familiar with the main features and limitations of the Java language;
• understand how to read Javadoc library documentation and reuse library code.
Recommended reading
No single text book covers all of the topics in this course. For those new to OOP, the best
introductions are usually found in the introductory programming texts for OOP languages
(such as Java, python or C++). Look for those that are for people new to programming
rather than those that are designed for programmers transitioning between languages (the
Deitel book is highlighted for this reason). The web is also a very useful resource — look
for Java tutorials.
10 University of Cambridge
* Deitel, H.M. & Deitel, P.J. (2009). Java: How to Program. Prentice Hall (8th ed.).
Flanagan, D. (2005). Java in a nutshell : a desktop quick reference. O’Reilly (5th ed.).
Flanagan, D. (2004). Java examples in a nutshell : a tutorial companion to Java in a
nutshell. O’Reilly (3rd ed.).
Gamma, E., Helm, R., Johnson, R. & Vlissides, A. (1995). Design patterns: elements of
reusable object-oriented software. Addison-Wesley.
Bloch, J. & Gafter, N. (2005). Java puzzlers. Addison-Wesley.
Aims
The aims of this course are to present the principles of combinational and sequential
digital logic design and optimisation at a gate level. The use of n and p channel MOSFETs
for building logic gates is also introduced.
Lectures
• Binary adders. Half adder, full adder, ripple carry adder, fast carry generation.
• Synchronous State Machines. Moore and Mealy finite state machines (FSMs).
Reset and self starting. State transition diagrams. Elimination of redundant states.
• Further state machines. State assignment: sequential, sliding, shift register, one
hot. Implementation of FSMs.
• Electronics, Devices and Circuits. Current and voltage, resistance, basic circuit
theory, the potential divider. Solving non-linear circuits. Materials, semiconductors
and the p-n junction, i.e., the diode. n and p channel MOSFETs and n-MOSFET
logic, e.g., n-MOSFET inverter. Switching speed and power consumption problems
in n-MOSFET logic. CMOS logic. Logic families. Noise margin. Analogue interfacing
and operational amplifiers. [3 lectures]
Objectives
• understand the relationships between combination logic and boolean algebra, and
between sequential logic and finite state machines;
• know how to design a simple finite state machine from a specification and be able to
implement this in gates and edge triggered flip-flops;
• understand the effect of finite load capacitance on the performance of digital logic
circuits.
Recommended reading
* Harris, D.M. & Harris, S.L. (2013). Digital design and computer architecture. Morgan
Kaufmann (2nd ed.). The first edition is still relevant.
Katz, R.H. (2004). Contemporary logic design. Benjamin/Cummings. The 1994 edition is
more than sufficient.
Hayes, J.P. (1993). Introduction to digital logic design. Addison-Wesley.
Books for reference:
Horowitz, P. & Hill, W. (1989). The art of electronics. Cambridge University Press (2nd ed.)
(more analog).
Weste, N.H.E. & Harris, D. (2005). CMOS VLSI Design – a circuits and systems
perspective. Addison-Wesley (3rd ed.).
Mead, C. & Conway, L. (1980). Introduction to VLSI systems. Addison-Wesley.
12 University of Cambridge
Aims
Lectures
• Proof [5 lectures].
Proofs in practice and mathematical jargon. Mathematical statements: implication,
bi-implication, universal quantification, conjunction, existential quantification,
disjunction, negation. Logical deduction: proof strategies and patterns, scratch work,
logical equivalences. Proof by contradiction. Divisibility and congruences. Fermat’s
Little Theorem.
• Numbers [5 lectures].
Number systems: natural numbers, integers, rationals, modular integers. The
Division Theorem and Algorithm. Modular arithmetic. Sets: membership and
comprehension. The greatest common divisor, and Euclid’s Algorithm and Theorem.
The Extended Euclid’s Algorithm and multiplicative inverses in modular arithmetic.
The Diffie-Hellman cryptographic method. Mathematical induction: Binomial
Theorem, Pascal’s Triangle, Fundamental Theorem of Arithmetic, Euclid’s infinity of
primes.
• Sets [9 lectures].
Extensionality Axiom: subsets and supersets. Separation Principle: Russell’s
Paradox, the empty set. Powerset Axiom: the powerset Boolean algebra, Venn and
Hasse diagrams. Pairing Axiom: singletons, ordered pairs, products. Union axiom:
big unions, big intersections, disjoint unions. Relations: composition, matrices,
directed graphs, preorders and partial orders. Partial and (total) functions.
Bijections: sections and retractions. Equivalence relations and set partitions.
Computer Science Tripos Part IA 13
Objectives
• know the basics of modular arithmetic and appreciate its role in cryptography;
• understand and use the language of set theory in applications to computer science;
• define sets inductively using rules and prove properties about them;
Recommended reading
Biggs, N.L. (2002). Discrete mathematics. Oxford University Press (Second Edition).
Davenport, H. (2008). The higher arithmetic: an introduction to the theory of numbers.
Cambridge University Press.
Hammack, R. (2013). Book of proof. Privately published (Second edition). Available at:
http://www.people.vcu.edu/ rhammack/BookOfProof/index.html
Houston, K. (2009). How to think like a mathematician: a companion to undergraduate
mathematics. Cambridge University Press.
Kozen, D.C. (1997). Automata and computability. Springer.
Lehman, E.; Leighton, F.T.; Meyer, A.R. (2014). Mathematics for computer science.
Available on-line.
Velleman, D.J. (2006). How to prove it: a structured approach. Cambridge University
Press (Second Edition).
14 University of Cambridge
Paper 3: Databases
Aims
This course introduces basic concepts for database systems as seen from the perspective
of application designers. That is, the focus is on the abstractions supported by database
management systems and not on how those abstractions are implemented.
The database world is currently undergoing swift and dramatic transformations largely
driven by Internet-oriented applications and services. Today many more options are
available to database application developers than in the past and so it is becoming
increasingly difficult to sort fact from fiction. The course attempts to cut through the fog
with a practical approach that emphasises engineering tradeoffs that underpin these
recent developments and also guide our selection of “the right tool for the job.”
This course covers three approaches. First, the traditional mainstay of the database
industry — the relational approach — is described with emphasis on eliminating logical
redundancy in data. Then two representatives of recent trends are presented —
graph-oriented and document-oriented databases. The lectures are tightly integrated with
the associated practical sessions where students gain hands-on experience with all three
of these approaches.
Lectures
Objectives
• understand the fundamental tradeoff between the ease of updating data and the
response time of complex queries
• understand that no single data architecture can be used to meet all data
management requirements
Recommended reading
Ullman, J. & Widom, J. (1997) A first course in database systems. Prentice Hall.
Aims
To introduce the necessary background, the basic algorithms, and the applications of
computer graphics and graphics hardware.
16 University of Cambridge
Lectures
• Graphics hardware and modern OpenGL. GPU rendering. GPU frameworks and
APIs. Vertex processing. Rasterisation. Fragment processing. Working with meshes
and textures. Z-buffer. Double-buffering and frame synchronization. [3 lectures]
Objectives
• describe and explain the following algorithms: Gouraud and Phong shading, z-buffer,
texture mapping, double buffering, mip-map, bump- and normal-mapping;
• implement OpenGL code for rendering of polygonal objects, control camera and
lighting, work with vertex and fragment shaders;
Recommended reading
This is a practical course taken by Part IA CST students only. It is taught through one
introductory lecture, followed by an online course which is equivalent in content to
approximately 5 lectures. Students will normally work though the online component at their
own pace. The course will be entirely examined through practical exercises.
Lecturer: Dr D. Wischik
No. of lectures: 1 (plus an online course with roughly 5 lectures worth of material in the
Lent term)
Suggested hours of supervisions: none
Prerequisite courses: Foundations of Computer Science, NST Mathematics
This course is a prerequisite for Foundations of Data Science (Part IB)
Aims
Syllabus
• Working with data. Data import. Common ways to summarize and plot data, for
univariate and multivariate analysis.
Objectives
Paper 1: Algorithms
Lecturer: Dr D. Wischik
No. of lectures and practical classes: 24 + 3 (NST and PBST students take 1 practical)
Suggested hours of supervisions: 6 to 8
Prerequisite courses: Foundations of Computer Science, Object-Oriented Programming
This course is a prerequisite for: Artificial Intelligence, Complexity Theory, Further
Graphics, Prolog and the following Part II courses: Advanced Algorithms and Machine
Learning and Bayesian Inference
Aims
The aim of this course is to provide an introduction to computer algorithms and data
structures, with an emphasis on foundational material.
Lectures
• Data structures. Primitive data structures. Abstract data types. Pointers, stacks,
queues, lists, trees. Binary search trees. Red-black trees. B-trees. Hash tables.
Priority queues and heaps. [Ref: CLRS3 chapters 6, 10, 11, 12, 13, 18] [about 5
lectures]
Objectives
• be able to design new algorithms or modify existing ones for new applications and
reason about the efficiency of the result.
Recommended reading
* Cormen, T.H., Leiserson, C.D., Rivest, R.L. & Stein, C. (2009). Introduction to
Algorithms. MIT Press (3rd ed.). ISBN 978-0-262-53305-8
Sedgewick, R., Wayne, K. (2011). Algorithms. Addison-Wesley. ISBN 978-0-321-57351-3.
Kleinberg, J. & Tardos, É. (2006). Algorithm design. Addison-Wesley. ISBN
978-0-321-29535-4.
Knuth, D.A. (2011). The Art of Computer Programming. Addison-Wesley. ISBN
978-0-321-75104-1.
Aims
The overall aim of this course is to provide a general understanding of the structure and
key functions of the operating system. Case studies will be used to illustrate and reinforce
fundamental concepts.
Lectures
• File management. File concept. Directory and storage services. File names and
meta-data. Directory name-space: hierarchies, DAGs, hard and soft links. File
operations. Access control. Existence and concurrency control. [1 lecture]
• Unix case study. History. General structure. Unix file system: file abstraction,
directories, mount points, implementation details. Processes: memory image, life
cycle, start of day. The shell: basic operation, commands, standard I/O, redirection,
pipes, signals. Character and block I/O. Process scheduling. [2 lectures]
Objectives
• understand the differences between segmented and paged memories, and be able
to describe the advantages and disadvantages of each;
• compare and contrast polled, interrupt-driven and DMA-based access to I/O devices.
Computer Science Tripos Part IA 21
Recommended reading
Aims
• Sequence Analysis: Hidden Markov Modelling and its application to a task from
biology (predicting protein interactions with a cell membrane) (4 sessions);
Syllabus
Objectives
• use clustering (i.e., a type of unsupervised machine learning) for detection of cliques
in unstructured networks.
Recommended reading
Jurafsky, D. & Martin, J. (2008). Speech and language processing. Prentice Hall.
Easley, D. and Kleinberg, J. (2010). Networks, crowds, and markets: reasoning about a
highly connected world. Cambridge University Press.
Computer Science Tripos Part IA 23
Aims
An overall implicit aim is to encourage caution when using any floating-point value
produced by a computer program. A variety of code fragments are provided and most are
available in multiple languages. Students are strongly encouraged to experiment with
these fragments.
(Changes from last year: One fewer topics will be lectured. A full-text Learners’ Guide
PDF will be available as well as slide hardcopies.)
Lectures
• Fluid Flow Analysis. Using a matrix representation of a linear flow circuit (water,
electricity etc) to find steady state. Extensions for non-linear and time-varying
branches (as used by SPICE).
• Adaptive Methods and Custom Encodings A subset of the following topics will we
be lectured/examinable as announced on the website: Arbitrary precision floating
point, adaptive floating point, interval arithmetic. Rounding errors in PCM.
Logarithmic and other non-linear representations. Their use in a-posteriori decision
algorithms. Eg for rapid multiplication in Viterbi/Bayes and specialist ALUs (e.g. for
low-density parity). Simulated Annealing. Non-linear spatial quantisation.
Objectives
• be able to convert simple decimal numbers to and from IEEE floating-point format,
and to perform IEEE arithmetic on them;
• be familiar with several key algorithms from the history of numerical analysis;
• decide how and when computation energy should be traded for accuracy;
Recommended reading
Overton, M.L. (2001). Numerical computing with IEEE floating point arithmetic. SIAM.
Further reading – goes far beyond the course
Computer Science Tripos Part IA 25
Goldberg, D. (1991). What every computer scientist should know about floating-point
arithmetic. ACM Computing Surveys, vol. 23, pp. 5–48.
Aims
This course aims to introduce students to software and security engineering, and in
particular to the problems of building large systems, safety-critical systems and systems
that must withstand attack by capable opponents. Case histories of failure are used to
illustrate what can go wrong, and current software and security engineering practice is
studied as a guide to how failures can be avoided.
Lectures
• Predicting user behaviour. Predicting and mitigating user errors. The hierarchy of
harms. Attitudes to risk: expected utility, prospect theory, framing, status quo bias,
gender. The characteristics of human memory; forgetting passwords versus
guessing them.
• Security protocols; how to enforce policy using cryptography and structured human
interaction. Man-in-the-middle attacks. The role of verification and its limitations.
• The software crisis. Examples of large-scale project failure, such as the London
Ambulance Service system and the NHS National Programme for IT. Intrinsic
difficulties with complex software.
• The software life cycle. The software life cycle. Getting the specification right;
requirements analysis methods; modular design; the role of prototyping; the waterfall
and spiral models.
Objectives
At the end of the course students should know how writing programs with tough assurance
targets, in large teams, or both, differs from the programming exercises they have engaged
in so far. They should appreciate the waterfall, spiral and evolutionary models of software
development as well as the value of various development and management tools. They
should understand the development life cycle and its basic economics. They should
understand the various types of bugs, vulnerabilities and hazards, how to find them, and
how to avoid introducing them. Finally, they should be prepared for the organizational
aspects of their Part IB group project.
Recommended reading
Aims
The aim of this course is to provide an introduction to interaction design, with an emphasis
on understanding and experiencing the user interface design process from requirements
and data gathering to implementation and evaluation, while gaining an understanding of
the background to human factors. This course focuses equally on design and
implementation.
Lectures
• Human cognition for interaction design. The Model human processor. Attention,
perception/recognition, memory, context and grouping, and their implications for
interaction design. Gestalt Laws of perceptual organisation.
• GOMS & Hick’s Law and Fitts’s Law Definition and use of GOMS in interaction
design. Definition and use of Hicks law / Fitts law.
Objectives
• have a thorough understanding of the iterative design process and be able to apply it
to interaction design;
• be able to design new user interfaces that are informed by principles of good design,
and the principles of human visual and affective perception, cognition and
communication;
• be able to construct user interfaces using Java with a strong emphasis on users,
usability and appearance;
• be able to compare and contrast different design techniques and to critique their
applicability to new domains.
Recommended reading
* Preece, J., Rogers, Y. & Sharp, H. (2015). Interaction design. Wiley (4th ed.).
Lecturer: Dr A. Beresford
No. of lectures: 1
Prerequisite course: Object-Oriented Programming
This course is a prerequisite for Further Java.
Aims
Lecture
The lecture describes the requirements for the first assessed exercise of the Part IB
Further Java course.
Objectives
For general advice about preparing for the Computer Science course at Cambridge and for
details of the pre-arrival course, please see: http://www.cl.cam.ac.uk/freshers/
30 University of Cambridge
Introduction to Part IB
This document lists the courses offered by the Computer Laboratory for Part IB of the
Computer Science Tripos. Separate booklets give details of the syllabus for other Parts of
the Computer Science Tripos.
Some courses are specific to either Paper 3 or Paper 7, and have been marked as such in
this booklet. Those students following the 75% Computer Science option, who have taken
Paper 3 in Part IA, will attend lectures for the Paper 7 courses. Those students taking the
50% Computer Science option, will attend the Paper 3 courses instead. The remaining
courses are taken by all Part IB students.
The syllabus information given here is for guidance only and should not be considered
definitive. Current timetables can be found at
http://www.cl.cam.ac.uk/teaching/timetables/
For most of the courses listed below, a list of recommended books is given. These are
roughly in order of usefulness, and lecturers have indicated by means of an asterisk those
books which are most recommended for purchase by College libraries.
The Computer Laboratory Library aims to keep at least one copy of each of the course
texts in “The Booklocker” (see http://www.cl.cam.ac.uk/library/).
For copies of the other syllabus booklets and for answers to general enquiries about
Computer Science courses, please get in touch with:
Teaching Administrator
University of Cambridge
Computer Laboratory
William Gates Building
J J Thomson Avenue
Cambridge
CB3 0FD
Computer Design
Aims
The aims of this course are to introduce a hardware description language (SystemVerilog)
and computer architecture concepts in order to design computer systems. The parallel
ECAD+Arch practical classes will allow students to apply the concepts taught in lectures.
The course starts with a web-based SystemVerilog tutor which is a prerequisite for the
ECAD+Arch practical classes. There are then eighteen lectures in three six-lecture parts.
Part 1 goes from gates to a simple processor. Part 2 looks at instruction set and computer
architecture. Part 3 analyses the architecture of modern systems-on-chip.
Lectures
• Logic modelling, simulation and synthesis. [1 lecture] Logic value and delay
modelling. Discrete event and device simulation. Automatic logic minimization.
• Chip, board and system testing. [1 lecture] Production testing, fault models,
testability, fault coverage, scan path testing, simulation models.
32 University of Cambridge
Part 2 - Instruction sets and introduction to computer architecture [lecturer: Simon Moore]
• RISC machines. [1 lecture] Introduction to ARM and MIPS RISC processor designs.
• CISC and virtual machines [1 lecture] The Intel x86 instruction set and the Java
Virtual Machine (JVM).
Objectives
• be able to read assembler given a guide to the instruction set and be able to write
short pieces of assembler if given an instruction set or asked to invent an instruction
set;
• understand how GPUs work and have an appreciation of how to program them.
Recommended reading
* Patterson, D.A. & Hennessy, J.L. (2017). Computer organization and design: The
hardware/software interface RISC-V edition. Morgan Kaufmann.
ISBN 978-0-12-812275-4.
Recommended further reading:
Harris, D.M. & Harris, S.L. (2012). Digital design and computer architecture. Morgan
Kaufmann. ISBN 978-0-12-394424-5.
Hennessy, J. & Patterson, D. (2006). Computer architecture: a quantitative approach.
Elsevier (4th ed.). ISBN 978-0-12-370490-0. (Older versions of the book are also still
generally relevant.)
Pointers to sources of more specialist information are included in the lecture notes and on
the associated course web page.
Aims
This course considers two closely related topics, Concurrent Systems and Distributed
Systems, over 16 lectures. The aim of the first half of the course is to introduce
concurrency control concepts and their implications for system design and implementation.
The aims of the latter half of the course are to study the fundamental characteristics of
distributed systems, including their models and architectures; the implications for software
design; some of the techniques that have been used to build them; and the resulting
details of good distributed algorithms and applications.
34 University of Cambridge
Lectures: Concurrency
• Safety and liveness Safety vs. liveness; deadlock; the Dining Philosophers;
resource allocation graphs; deadlock prevention, avoidance, detection, and recovery;
livelock; priority inversion; priority inheritance.
• Further transactions History graphs; good and bad schedules; isolation vs. strict
isolation; 2-phase locking; rollback; timestamp ordering (TSO); and optimistic
concurrency control (OCC).
• Practical RPC systems; clocks Remote method invocation (RMI); remote classes
vs. serialisable classes; distributed garbage collection; XML-RPC; SOAP and web
services; REST. Physical clocks; UTC; computer clocks; clock synchronisation.
• Consistent cuts, process groups, and mutual exclusion Consistent global state;
consistent cuts. Process groups; FIFO ordering; receiving vs. delivering; causal
ordering; total ordering. Distributed mutual exclusion; central lock servers; token
passing; totally ordered multicast.
Objectives
• understand the need for concurrency control in operating systems and applications,
both mutual exclusion and condition synchronisation;
• understand the concept of transaction; the properties of transactions, how they can
be implemented, and how their performance can be optimised based on optimistic
assumptions;
At the end of the Distributed Systems portion of the course, students should:
• be familiar with various approaches to data and service replication, as well as the
concept of data consistency;
• understand the effects of large scale on the provision of fundamental services and
the tradeoffs arising from scale;
Recommended reading
* Bacon, J. & Harris, T. (2003). Operating systems: distributed and concurrent software
design. Addison-Wesley.
Bacon, J. (1997). Concurrent systems. Addison-Wesley.
Tanenbaum, A.S. & van Steen, M. (2002). Distributed systems. Prentice Hall.
Coulouris, G.F., Dollimore, J.B. & Kindberg, T. (2005, 2001). Distributed systems, concepts
and design. Addison-Wesley (4th, 3rd eds.).
Computer Science Tripos Part IB 37
Paper 3: Databases
Aims
This course introduces basic concepts for database systems as seen from the perspective
of application designers. That is, the focus is on the abstractions supported by database
management systems and not on how those abstractions are implemented.
The database world is currently undergoing swift and dramatic transformations largely
driven by Internet-oriented applications and services. Today many more options are
available to database application developers than in the past and so it is becoming
increasingly difficult to sort fact from fiction. The course attempts to cut through the fog
with a practical approach that emphasises engineering tradeoffs that underpin these
recent developments and also guide our selection of “the right tool for the job.”
This course covers three approaches. First, the traditional mainstay of the database
industry — the relational approach — is described with emphasis on eliminating logical
redundancy in data. Then two representatives of recent trends are presented —
graph-oriented and document-oriented databases. The lectures are tightly integrated with
the associated practical sessions where students gain hands-on experience with all three
of these approaches.
Lectures
Objectives
• understand the fundamental tradeoff between the ease of updating data and the
response time of complex queries
• understand that no single data architecture can be used to meet all data
management requirements
Recommended reading
Ullman, J. & Widom, J. (1997) A first course in database systems. Prentice Hall.
Aims
The aims of this course are to enable students to apply the concepts learned in the
Computer Design course. In particular a web based tutor is used to introduce the
SystemVerilog hardware description language, while the remaining practical classes will
then allow students to implement the design of components in this language.
Computer Science Tripos Part IB 39
Practical Classes
• Web tutor This first class uses a web based tutor to rapidly teach the SystemVerilog
language (this is part of the lectured component of Computer Design).
• FPGA design flow Test driven hardware development for FPGA including an
embedded processor and peripherals [3 classes]
Objectives
Recommended reading
* Harris, D.M. & Harris, S.L. (2007). Digital design and computer architecture: from gates
to processors. Morgan Kaufmann.
Pointers to sources of more specialist information are included on the associated course
web page.
Aims
This course aims to give students an introduction to some basic concepts in economics,
law and ethics.
40 University of Cambridge
Lectures
• Game theory. The choice between cooperation and conflict. Prisoners’ Dilemma;
Nash equilibrium; hawk–dove; iterated games; evolution of strategies; application to
biology and computer science.
• Market failure. Asymmetric information: the market for lemons; adverse selection;
moral hazard; signalling; and brands. Transaction costs and the theory of the firm.
Real and virtual networks, supply-side versus demand-side scale economies,
Metcalfe’s law, the dominant firm model, price discrimination. Behavioural
economics: bounded rationality, heuristics and biases.
• Auctions. English auctions; Dutch auctions; all-pay auctions; Vickrey auctions. The
winner’s curse. The revenue equivalence theorem. Mechanism design and the
combinatorial auction. Problems with real auctions. Applicability of auction
mechanisms in computer science.
• Principles of law. Contract and tort; copyright and patent; binding actions; liabilities
and remedies; competition law; choice of law and jurisdiction.
Objectives
At the end of the course students should have a basic appreciation of economic and legal
terminology and arguments. They should understand some of the applications of
economic models to systems engineering and their interest to theoretical computer
science. They should also understand the main constraints that markets, legislation and
ethics place on firms dealing in information goods and services.
Recommended reading
* Shapiro, C. & Varian, H. (1998). Information rules. Harvard Business School Press.
Varian, H. (1999). Intermediate microeconomics – a modern approach. Norton.
Further reading:
Smith, A. (1776). An inquiry into the nature and causes of the wealth of nations, available
at http://www.econlib.org/library/Smith/smWN.html
Computer Science Tripos Part IB 41
Lecturer: Dr D. Wischik
No. of lectures and practical classes: 12 + 4
Suggested hours of supervisions: 3
Prerequisite courses: either Mathematics for Natural Sciences, or the equivalent from the
Maths Tripos
This course is a prerequisite: for Part IB Formal Models of Language, and for Part II
Machine Learning and Bayesian Inference, Bioinformatics, Computer Systems Modelling,
Information Theory, Quantum Computing, Natural Language Processing, Advanced
Graphics.
Aims
This course introduces fundamental tools for describing and reasoning about data. There
are two themes: describing the behaviour of random systems; and making inferences
based on data generated by such systems. The course will survey a wide range of models
and tools, and it will emphasize how to design a model and what sorts of questions one
might ask about it.
Lectures
• Feature spaces. Vector spaces, bases, inner products, projection. Model fitting as
projection; linear modeling. Orthogonalisation, and application to linear models.
Dimension reduction.
42 University of Cambridge
Objectives
• be familiar with common random variables and their uses, and with the use of
empirical distributions rather than formulae
• understand different types of inference about noisy data, including model fitting,
hypothesis testing, and making predictions
Recommended reading
* F.M. Dekking, C. Kraaikamp, H.P. Lopuhaä, L.E. Meester (2005). A modern introduction
to probability and statistics: understanding why and how. Springer.
S.M. Ross (2002). Probability models for computer science. Harcourt / Academic Press.
M. Mitzenmacher & E. Upfal (2005). Probability and computing: randomized algorithms
and probabilistic analysis. Cambridge University Press.
Aims
This course explores the modern state of computer graphics, applying long-standing
techniques to cutting-edge hardware.
Computer Science Tripos Part IB 43
Lectures
Objectives
• use graphics hardware to render interactive images, both polygonal and implicit;
• understand the core technologies of ray tracing, rendering, and implicit surfaces;
• learn techniques of computational geometry and their applications to visualization;
• describe the underlying theory of splines and subdivision and define the
Catmull-Clark and Doo-Sabin subdivision methods;
Recommended reading
Students should expect to refer to one or more of these books, but should not find it
necessary to purchase any of them.
* Shirley, P. & Marschner, S. (2009). Fundamentals of Computer Graphics. CRC Press
(3rd ed.).
Watt, A. (1999). 3D Computer Graphics. Addison-Wesley (3rd ed).
Hughes, van Dam, McGuire, Skalar, Foley, Feiner & Akeley (2013). Computer Graphics:
Principles & Practice. Addison-Wesley (3rd edition)
Rogers, D.F. & Adams, J.A. (1990). Mathematical elements for computer graphics.
McGraw-Hill (2nd ed.).
44 University of Cambridge
Further Java
Aims
The goal of this course is to provide students with the ability to understand the advanced
programming features available in the Java programming language, completing the
coverage of the language started in the Programming in Java course. The course is
designed to accommodate students with diverse programming backgrounds; consequently
Java is taught from first principles in a practical class setting where students can work at
their own pace from a course handbook. Each practical class will culminate in an
assessed exercise.
Practical classes
• Communication and client applications. This class will introduce the Eclipse
development environment. Students will write a simple client to send and receive
data to a server via TCP.
• Serialisation, reflection and class loaders. This class will introduce object
serialisation. Students will use a class loader and reflection to inspect an object
which is only available at run-time.
• Vector clocks. This week students will use the concept of vector clocks to make
their client and server robust to message delays and reordering.
Objectives
Recommended reading
* Goetz, B. (2006). Java concurrency in practice. Addison-Wesley. Gosling, J., Joy, B.,
Steele, G., Bracha, G. & Buckley, A. (2014). The Java language specification, Java SE 8
Edition. Addison-Wesley.
http://docs.oracle.com/javase/specs/jls/se8/html/
Group Project
Aims
The aim of this course is to give students a realistic introduction to software development
as practised in industry. This means working to rigid deadlines, with a team of colleagues
not of one’s own choosing, having to satisfy an external client that a design brief has been
properly interpreted and implemented, all within the constraints of limited effort and
technical resources.
Lectures
Objectives
• have gained confidence in their ability to develop significant software projects and
Part IB students should be prepared for the personal project they will undertake in
Part II.
Aims
To introduce the necessary background, the basic algorithms, and the applications of
computer graphics and graphics hardware.
Lectures
• Graphics hardware and modern OpenGL. GPU rendering. GPU frameworks and
APIs. Vertex processing. Rasterisation. Fragment processing. Working with meshes
and textures. Z-buffer. Double-buffering and frame synchronization. [3 lectures]
Objectives
• describe and explain the following algorithms: Gouraud and Phong shading, z-buffer,
texture mapping, double buffering, mip-map, bump- and normal-mapping;
• implement OpenGL code for rendering of polygonal objects, control camera and
lighting, work with vertex and fragment shaders;
Recommended reading
Programming in C
Lecturer: Dr N. Krishnaswami
No. of lectures: 10
Suggested hours of supervisions: 3
Prerequisite courses: None, though Operating Systems would be helpful.
48 University of Cambridge
Aims
The aims of this course are to provide a solid introduction to programming in C and to
provide an overview of the principles and constraints that affect the way in which the C
programming language has been designed and is used.
Lectures
Objectives
• understand the interaction between C programs and the host operating system;
Recommended reading
* Kernighan, B.W. & Ritchie, D.M. (1988). The C programming language. Prentice Hall
(2nd ed.).
Paper 7: Prolog
Aims
The aim of this course is to introduce programming in the Prolog language. Prolog
encourages a different programming style to Java or ML and particular focus is placed on
programming to solve real problems that are suited to this style. Practical experimentation
with the language is strongly encouraged.
Lectures
• Introduction to Prolog. The structure of a Prolog program and how to use the
Prolog interpreter. Unification. Some simple programs.
• Arithmetic and lists. Prolog’s support for evaluating arithmetic expressions and
lists. The space complexity of program evaluation discussed with reference to
last-call optimisation.
• Backtracking, cut, and negation. The cut operator for controlling backtracking.
Negation as failure and its uses.
• Search and cut. Prolog’s search method for solving problems. Graph searching
exploiting Prolog’s built-in search mechanisms.
Objectives
• appreciate the unique perspective Prolog gives to problem solving and algorithm
design;
• understand how larger programs can be created using the basic programming
techniques used in this course.
50 University of Cambridge
Recommended reading
Aims
The aim of this course is to introduce the structural, operational approach to programming
language semantics. It will show how to specify the meaning of typical programming
language constructs, in the context of language design, and how to reason formally about
semantic properties of programs.
Lectures
• Types. Introduction to formal type systems. Typing for the simple imperative
language. Statements of desirable properties. [2 lectures]
• Data. Semantics and typing for products, sums, records, references. [1 lecture]
Objectives
Recommended reading
Unix Tools
Aims
This course gives students who have already basic Unix/Linux experience some additional
practical software-engineering knowledge: how to use the shell and related tools as an
efficient working environment, how to automate routine tasks, and how version control and
automated-build tools can help to avoid confusion and accidents, especially when working
in teams. These are essential skills, both in industrial software development and student
projects.
52 University of Cambridge
Lectures
• Unix concepts. Brief review of Unix history and design philosophy, documentation,
terminals, inter-process communication mechanisms and conventions, shell,
command-line arguments, environment variables, file descriptors.
• Scripting. Plain-text formats, executables, #!, shell control structures and functions.
Startup scripts.
• Text, file and networking tools. sed, grep, chmod, find, ssh, rsync, tar, zip, etc.
Objectives
• appreciate how simple tools can be combined to perform a large variety of tasks;
• be familiar with the most common tools, file formats and configuration practices;
• appreciate how using revision control systems and fully automated build processes
help to maintain reproducibility and audit trails during software development;
• know enough about basic development tools to be able to install, modify and debug
C source code;
• have understood the main concepts of, and gained initial experience in, writing Perl
scripts (excluding the facilities for object-oriented programming).
Recommended reading
Compiler Construction
Aims
This course aims to cover the main concepts associated with implementing compilers for
programming languages. We use a running example called SLANG (a Small LANGuage)
inspired by the languages described in 1B Semantics. A toy compiler (written in ML) is
provided, and students are encouraged to extend it in various ways.
Lectures
Objectives
At the end of the course students should understand the overall structure of a compiler,
and will know significant details of a number of important techniques commonly used.
They will be aware of the way in which language features raise challenges for compiler
builders.
Recommended reading
* Aho, A.V., Sethi, R. & Ullman, J.D. (2007). Compilers: principles, techniques and tools.
Addison-Wesley (2nd ed.).
Mogensen, T. Æ. (2011). Introduction to compiler design. Springer.
http://www.diku.dk/ torbenm/Basics.
Computation Theory
Aims
The aim of this course is to introduce several apparently different formalisations of the
informal notion of algorithm; to show that they are equivalent; and to use them to
demonstrate that there are uncomputable functions and algorithmically undecidable
problems.
Lectures
• Universal register machine. Natural number encoding of pairs and lists. Coding
register machine programs as numbers. Specification and implementation of a
universal register machine. [2 lectures]
Objectives
• be familiar with the register machine, Turing machine and lambda-calculus models of
computability;
• understand the mathematical notion of partial recursive function and its relationship
to computability.
Recommended reading
* Hopcroft, J.E., Motwani, R. & Ullman, J.D. (2001). Introduction to automata theory,
languages, and computation. Addison-Wesley (2nd ed.).
* Hindley, J.R. & Seldin, J.P. (2008). Lambda-calculus and combinators, an introduction.
Cambridge University Press (2nd ed.).
Cutland, N.J. (1980). Computability: an introduction to recursive function theory.
Cambridge University Press.
Davis, M.D., Sigal, R. & Weyuker, E.J. (1994). Computability, complexity and languages.
Academic Press (2nd ed.).
Sudkamp, T.A. (2005). Languages and machines. Addison-Wesley (3rd ed.).
56 University of Cambridge
Computer Networking
Lecturer: Dr E. Kalyvianaki
No. of lectures: 20
Suggested hours of supervisions: 5
This course is a prerequisite for the Part II courses Principles of Communication and
Security II.
Aims
The aim of this course is to introduce key concepts and principles of computer networks.
The course will use a top-down approach to study the Internet and its protocol stack.
Instances of architecture, protocol, application-examples will include email, web and
media-streaming. We will cover communications services (e.g., TCP/IP) required to
support such network applications. The implementation and deployment of
communications services in practical networks: including wired and wireless LAN
environments, will be followed by a discussion of issues of network-security and
network-management, Throughout the course, the Internet’s architecture and protocols
will be used as the primary examples to illustrate the fundamental principles of computer
networking.
Lectures
• Link layer and local area networks. Link layer services, error detection and
correction, Multiple Access Protocols, link layer addressing, Ethernet, hubs and
switches, Point-to-Point Protocol. [2 lectures]
• Wireless and mobile networks. Wireless links and network characteristics, Wi-Fi:
IEEE 802.11 wireless LANs, mobility management and mobile IP. [1 lecture]
• Network layer addressing. Network layer services, IP, IP addressing, IPv4, DHCP,
NAT, ICMP, IPv6. [3 lectures]
• Network layer routing. Routing and forwarding, routing algorithms, routing in the
Internet, RIP, OSPF, BGP, multicast. [3 lectures]
Objectives
• have an informed view of both the internal workings of the Internet and of a number
of common Internet applications and protocols.
Recommended reading
* Peterson, L.L. & Davie, B.S. (2011). Computer networks: a systems approach. Morgan
Kaufmann (5th ed.). ISBN 9780123850591
Kurose, J.F. & Ross, K.W. (2009). Computer networking: a top-down approach.
Addison-Wesley (5th ed.).
Comer, D. & Stevens, D. (2005). Internetworking with TCP-IP, vol. 1 and 2. Prentice Hall
(5th ed.).
Stevens, W.R., Fenner, B. & Rudoff, A.M. (2003). UNIX network programming, Vol.I: The
sockets networking API. Prentice Hall (3rd ed.).
Aims
Lectures
• Theory driven approaches to HCI. What is a theory in HCI? Why take a theory
driven approach to HCI?
• Designing smart systems. Using statistical methods to anticipate user needs and
actions with Bayesian strategies.
Objectives
At the end of the course students should be able to apply theories of human performance
and cognition to system design, including selection of appropriate techniques to analyse,
observe and improve the usability of a wide range of technologies.
Recommended reading
* Preece, J., Sharp, H. & Rogers, Y. (2015). Interaction design: beyond human–computer
interaction. Wiley (Currently in 4th edition, but earlier editions will suffice).
Further reading:
Carroll, J.M. (ed.) (2003). HCI models, theories and frameworks: toward a
multi-disciplinary science. Morgan Kaufmann.
Computer Science Tripos Part IB 59
Lecturer: Dr M. Jamnik
No. of lectures: 12
Suggested hours of supervisions: 3
This course is a prerequisite for the Part II courses Machine Learning and Bayesian
Inference, Hoare Logic & Model Checking and Natural Language Processing.
Aims
This course will teach logic, especially the predicate calculus. It will present the basic
principles and definitions, then describe a variety of different formalisms and algorithms
that can be used to solve problems in logic. Putting logic into the context of Computer
Science, the course will show how the programming language Prolog arises from the
automatic proof method known as resolution. It will introduce topics that are important in
mechanical verification, such as binary decision diagrams (BDDs), SAT solvers and modal
logic.
Lectures
• Modal logics. Possible worlds semantics. Truth and validity. A Hilbert-style proof
system. Sequent calculus rules.
Objectives
• understand the relationships among the various calculi, e.g. SAT solving, resolution
and Prolog;
Recommended reading
* Huth, M. & Ryan, M. (2004). Logic in computer science: modelling and reasoning about
systems. Cambridge University Press (2nd ed.).
Ben-Ari, M. (2001). Mathematical logic for computer science. Springer (2nd ed.).
Aims
• Sequence Analysis: Hidden Markov Modelling and its application to a task from
biology (predicting protein interactions with a cell membrane) (4 sessions);
Syllabus
Objectives
Recommended reading
Jurafsky, D. & Martin, J. (2008). Speech and language processing. Prentice Hall.
Easley, D. and Kleinberg, J. (2010). Networks, crowds, and markets: reasoning about a
highly connected world. Cambridge University Press.
62 University of Cambridge
Artificial Intelligence
Aims
The aim of this course is to provide an introduction to some fundamental issues and
algorithms in artificial intelligence (AI). The course approaches AI from an algorithmic,
computer science-centric perspective; relatively little reference is made to the
complementary perspectives developed within psychology, neuroscience or elsewhere.
The course aims to provide some fundamental tools and algorithms required to produce AI
systems able to exhibit limited human-like abilities, particularly in the form of problem
solving by search, game-playing, representing and reasoning with knowledge, planning,
and learning.
Lectures
• Search II. More sophisticated heuristic search algorithms. The A* algorithm and its
properties. Improving memory efficiency: the IDA* and recursive best first search
algorithms. Local search and gradient descent. [1 lecture]
• Knowledge representation and reasoning I. How can we represent and deal with
commonsense knowledge and other forms of knowledge? Semantic networks,
frames and rules. How can we use inference in conjunction with a knowledge
representation scheme to perform reasoning about the world and thereby to solve
problems? Inheritance, forward and backward chaining. [1 lectures]
• Planning I. Methods for planning in advance how to solve a problem. The STRIPS
language. Achieving preconditions, backtracking and fixing threats by promotion or
demotion: the partial-order planning algorithm. [1 lecture]
Objectives
• appreciate the distinction between the popular view of the field and the actual
research results;
• appreciate the fact that the computational complexity of most AI problems requires
us regularly to deal with approximate techniques;
Recommended reading
For some of the material you might find it useful to consult more specialised texts, in
particular:
Dechter, R. (2003). Constraint processing. Morgan Kaufmann.
Cawsey, A. (1998). The essence of artificial intelligence. Prentice Hall.
Ghallab, M., Nau, D. & Traverso, P. (2004). Automated planning: theory and practice.
Morgan Kaufmann.
Bishop, C.M. (2006). Pattern recognition and machine learning. Springer.
Complexity Theory
Aims
The aim of the course is to introduce the theory of computational complexity. The course
will explain measures of the complexity of problems and of algorithms, based on time and
space used on abstract models. Important complexity classes will be defined, and the
notion of completeness established through a thorough study of NP-completeness.
Applications to cryptography will be considered.
Lectures
• Time and space. Models of computation and measures of complexity. Time and
space complexity on a Turing machine. Decidability and complexity.
• coNP. Validity of boolean formulae and its completeness. NP ∩ coNP. Primality and
factorisation.
• Hierarchy. The time and space hierarchy theorems and complete problems.
• Descriptive complexity. Logics capturing complexity classes. Fagin’s theorem.
Objectives
Recommended reading
Aims
The general aim of this course is to provide an overview of the basic concepts that appear
in modern programming languages, the principles that underlie the design of programming
languages, and their interaction.
66 University of Cambridge
Lectures
• The ancestors: Fortran, Lisp, Algol and Pascal. Key ideas: procedural (Fortran),
declarative (Lisp), block structured (Algol and Pascal). Execution models (abstract
machines), data types, control structures, storage, arrays and pointers, procedures
and forms of parameter passing, scope, strict and lazy evaluation, garbage
collection. Programs as data (Lisp).
Objectives
• be familiar with several language paradigms and how they relate to different
application domains;
Recommended reading
Books:
* Mitchell, J.C. (2003). Concepts in programming languages. Cambridge University Press.
* Scott, M.L. (2009). Programming language pragmatics. Morgan Kaufmann.
Odersky, M. (2008). Scala by example. Programming Methods Laboratory, EPFL.
Pratt, T.W. & Zelkowitz, M.V. (2001). Programming languages: design and implementation.
Prentice Hall.
Papers:
Kay, A.C. (1993). The early history of Smalltalk. ACM SIGPLAN Notices, Vol. 28, No. 3.
Kernighan, B. (1981). Why Pascal is not my favorite programming language. AT&T Bell
Laboratories. Computing Science Technical Report No. 100.
Koenig, A. (1994). An anecdote about ML type inference. USENIX Symposium on Very
High Level Languages.
Landin, P.J. (1966). The next 700 programming languages. Communications of the ACM,
Vol. 9, Issue 3.
Odersky, M. et al. (2006). An overview of the Scala programming language. Technical
Report LAMP-REPORT-2006-001, Second Edition.
McCarthy, J. (1960). Recursive functions of symbolic expressions and their computation
by machine. Communications of the ACM, 3(4):184–195.
Stroustrup, B. (1991). What is Object-Oriented Programming? (1991 revised version).
Proceedings 1st European Software Festival.
Aims
This course studies formal models of language and considers how they might be relevant
to the processing and acquisition of natural languages. The course will extend knowledge
of formal language theory; introduce several new grammars; and use concepts from
information theory to describe natural language.
Lectures
• Natural language and the Chomsky hierarchy 2. Pumping lemma for context free
languages. Discussion of relevance (or not) to natural languages (example
Swiss-German cross serial dependancies). Properties of minimally context sensitive
languages. Introduction to tree adjoining grammars.
• Vector space models and word vectors. Introduction to word vectors (example
Word2Vec). Word vectors as predictors for semantic language processing.
Objectives
• understand how known natural languages relate to formal languages in the Chomsky
hierarchy;
Recommended reading
* Jurafsky, D. & Martin, J. (2008). Speech and language processing. Prentice Hall.
Computer Science Tripos Part IB 69
Aims
The aim of this course is to provide an introduction to interaction design, with an emphasis
on understanding and experiencing the user interface design process from requirements
and data gathering to implementation and evaluation, while gaining an understanding of
the background to human factors. This course focuses equally on design and
implementation.
Lectures
• Human cognition for interaction design. The Model human processor. Attention,
perception/recognition, memory, context and grouping, and their implications for
interaction design. Gestalt Laws of perceptual organisation.
• GOMS & Hick’s Law and Fitts’s Law Definition and use of GOMS in interaction
design. Definition and use of Hicks law / Fitts law.
Objectives
• have a thorough understanding of the iterative design process and be able to apply it
to interaction design;
• be able to design new user interfaces that are informed by principles of good design,
and the principles of human visual and affective perception, cognition and
communication;
• be able to construct user interfaces using Java with a strong emphasis on users,
usability and appearance;
• be able to compare and contrast different design techniques and to critique their
applicability to new domains.
Recommended reading
* Preece, J., Rogers, Y. & Sharp, H. (2015). Interaction design. Wiley (4th ed.).
Security
Aims
Lectures
• POSIX discretionary access control. User and group databases and identifiers,
file permission modes, ownership rights, sticky bit, group inheritance, set-uid,
elevation of privileges, root user, NFS root squash, chroot, POSIX.1e ACLs.
• Email and DNS security. SMTP/RFC822 header forgery, spam, SPF, DKIM, DNS
vulnerabilities, DNSSEC.
• Web security. HTTP basics, HTTPS, SNI, HTTP authentication, cookies, single
sign-on (Ucam WebAuth, SAML), delegation (OAuth2), JavaScript, cross-site
scripting, cross-site request forgery, same-origin policy, CORS.
72 University of Cambridge
Objectives
By the end of the course, students should appreciate the importance of adversarial
thinking in systems design and have a good overview of the security mechanisms and
attributes of some of the most commonly used operating systems, networking
infrastructure and Internet applications. They should also understand commonly exploited
vulnerabilities of authentication mechanisms and know how to avoid some common
security pitfalls in software development.
Recommended reading
Introduction to Part II
This document lists the courses offered by the Computer Laboratory for Part II of the
Computer Science Tripos. Separate booklets give details of the syllabus for other Parts of
the Computer Science Tripos.
For Part II of CST you read papers 7, 8 and 9 and submit a dissertation. Each of these
four is marked out of 100 giving a total available credit in Part II of 400 marks.
The taught modules in Part II are examined in papers 7, 8 and 9 and you answer five
questions from each paper. There are no restrictions on which questions you answer. The
layout of the papers is announced just before the Michaelmas term starts, but it is
generally mostly the same as in previous years, varying only to accomodate new,
withdrawn or suspended courses.
It is up to you to make sure you read sufficient courses to be able to answer five questions
on each of the papers. Generally, you should aim to be able to answer at least six
questions on each paper. You are certainly not expected to go to all the Part II lectures
and be able to answer all of the questions on every paper — that would be more or less
impossible.
Here is a suggestion for how to plan your courses: In September, just before the start of
the year, look through the course list and strike out any course you know you won’t do (i.e.
remove the definite ‘no’s - there are always some). Then attend the first lecture of every
Part II course to get the feel for it and make a decision on whether to continue after
checking that dropping the course doesn’t leave you short on any paper. Work on the
basis of being able to answer 6 questions, with a 7th as a backup where you are confident
of scoring half marks (but probably no more).
It is the duty of your Director of Studies to advise you in course selection so do ask for
guidance.
The syllabus information given here is for guidance only and should not be considered
definitive. Current timetables can be found at
http://www.cl.cam.ac.uk/teaching/timetables/
For most of the courses listed below, a list of recommended books is given. These are
roughly in order of usefulness, and lecturers have indicated by means of an asterisk those
books which are most recommended for purchase by College libraries.
The Computer Laboratory Library aims to keep at least one copy of each of the course
texts in “The Booklocker” (see http://www.cl.cam.ac.uk/library/).
74 University of Cambridge
For copies of the other syllabus booklets and for answers to general enquiries about
Computer Science courses, please get in touch with:
Teaching Administrator
University of Cambridge
Computer Laboratory
William Gates Building
J J Thomson Avenue
Cambridge
CB3 0FD
Bioinformatics
Lecturer: Dr S. Frost
No. of lectures: 12
Suggested hours of supervisions: 3
Aims
This course focuses on algorithms used in Bioinformatics and System Biology. Most of the
algorithms are general and can be applied in other fields on multidimensional and noisy
data. All the necessary biological terms and concepts useful for the course and the
examination will be given in the lectures. The most important software implementing the
described algorithms will be demonstrated.
Lectures
• Hidden Markov Models. The Viterbi algorithm, profile HMMs for sequence
alignment, classifying proteins with profile HMMs, soft decoding problem,
Baum-Welch learning. (Vol. 2, chapter 10)
Objectives
Recommended reading
Business Studies
Aims
How to start and run a computer company; the aims of this course are to introduce
students to all the things that go to making a successful project or product other than just
the programming. The course will survey some of the issues that students are likely to
encounter in the world of commerce and that need to be considered when setting up a
new computer company.
See also Business Seminars in the Easter Term.
Lectures
• So you’ve got an idea? Introduction. Why are you doing it and what is it? Types of
company. Market analysis. The business plan.
• Money and tools for its management. Introduction to accounting: profit and loss,
cash flow, balance sheet, budgets. Sources of finance. Stocks and shares. Options
and futures.
• Setting up: legal aspects. Company formation. Brief introduction to business law;
duties of directors. Shares, stock options, profit share schemes and the like.
Computer Science Tripos Part II 77
• People. Motivating factors. Groups and teams. Ego. Hiring and firing: employment
law. Interviews. Meeting techniques.
• Project planning and management. Role of a manager. PERT and GANTT charts,
and critical path analysis. Estimation techniques. Monitoring.
• Marketing and selling. Sales and marketing are different. Marketing; channels;
marketing communications. Stages in selling. Control and commissions.
• Growth and exit routes. New markets: horizontal and vertical expansion. Problems
of growth; second system effects. Management structures. Communication. Exit
routes: acquisition, floatation, MBO or liquidation. Futures: some emerging ideas for
new computer businesses. Summary. Conclusion: now you do it!
Objectives
• appreciate the differences between profitability and cash flow, and have some notion
of budget estimation;
• have an outline view of company formation, share structure, capital raising, growth
and exit routes;
Recommended reading
Lang, J. (2001). The high-tech entrepreneur’s handbook: how to start and run a high-tech
company. FT.COM/Prentice Hall.
Students will be expected to be able to use Microsoft Excel and Microsoft Project.
For additional reading on a lecture-by-lecture basis, please see the course website.
Students are strongly recommended to enter the CU Entrepreneurs Business Ideas
Competition http://www.cue.org.uk/
78 University of Cambridge
Denotational Semantics
Aims
The aims of this course are to introduce domain theory and denotational semantics, and to
show how they provide a mathematical basis for reasoning about the behaviour of
programming languages.
Lectures
• Least fixed points. Complete partial orders (cpos) and least elements. Continuous
functions and least fixed points.
• Scott induction. Chain-closed and admissible subsets of cpos and domains. Scott’s
fixed-point induction principle.
• Full abstraction. Failure of full abstraction for the domain model. PCF with
parallel or.
Objectives
• understand the issues concerning the relation between denotational and operational
semantics, adequacy and full abstraction, especially with respect to the
language PCF.
Recommended reading
Aims
This course teaches the basic signal-processing principles necessary to understand many
modern high-tech systems, with digital-communications examples. Students will gain
practical experience from numerical experiments in MATLAB-based programming
assignments.
Lectures
• Signals and systems. Discrete sequences and systems, their types and properties.
Linear time-invariant systems, convolution.
• Dirac’s delta function. Fourier representation of sine waves, impulse combs in the
time and frequency domain.
80 University of Cambridge
Objectives
Recommended reading
* Lyons, R.G. (2010). Understanding digital signal processing. Prentice Hall (3rd ed.).
Oppenheim, A.V. & Schafer, R.W. (2007). Discrete-time digital signal processing.
Prentice Hall (3rd ed.).
Human–Computer Interaction
Aims
This course will introduce systematic approaches to the design and analysis of user
interfaces.
Lectures
• Augmented reality and tangible user interfaces. Machine vision, fiducial markers,
paper interfaces, mixed reality.
Objectives
• propose design approaches that are suitable to different classes of user and
application;
82 University of Cambridge
• understand the history and purpose of the features of contemporary user interfaces.
Recommended reading
* Sharp, H., Rogers, Y. & Preece, J. (2007). Interaction design: beyond human–computer
interaction. Wiley (2nd ed.).
Further reading:
Carroll, J.M. (ed.) (2003). HCI models, theories and frameworks: toward a
multi-disciplinary science. Morgan Kaufmann.
Cairns, P. & Cox, A. (eds.) (2008). Research methods for human-computer interaction.
Cambridge University Press.
Information Theory
Aims
The aims of this course are to introduce the principles and applications of information
theory. The course covers how information is measured in terms of probability and various
entropies, and how these are used to calculate the capacity of communication channels,
continuous or discrete, with or without noise. Coding schemes including error correcting
codes are studied along with data compression, spectral analysis, and efficient coding
using wavelets. Applications of information theory are also reviewed, from bioinformatics
to pattern recognition.
Lectures
• Entropies defined, and why they are measures of information. Marginal entropy,
joint entropy, conditional entropy, and the Chain Rule for entropy. Mutual information
Computer Science Tripos Part II 83
Objectives
• calculate the information content of a random variable from its probability distribution;
• relate the joint, conditional, and marginal entropies of variables in terms of their
coupled probabilities;
• describe compression schemes, and efficient coding using wavelets and other
representations for data.
Recommended reading
* Cover, T.M. & Thomas, J.A. (2006). Elements of information theory. New York: Wiley.
Aims
Lectures
• MATLAB. Tools for technical computing and visualization. The matrix type and its
operators, 2D/3D plotting, common functions, function definitions, toolboxes,
vectorized audio demonstration.
Computer Science Tripos Part II 85
Objectives
Students should be able to avoid the most common LATEX mistakes, to prototype simple
image and signal processing algorithms in MATLAB, and to visualize the results.
Recommended reading
Aims
Lectures
Objectives
• be able to discuss the current and likely future performance of several NLP
applications;
• understand how these techniques draw on and relate to other areas of computer
science.
Recommended reading
* Jurafsky, D. & Martin, J. (2008). Speech and language processing. Prentice Hall.
Although the NLP lectures don’t assume any exposure to linguistics, the course will be
easier to follow if students have some understanding of basic linguistic concepts. The
following may be useful for reference purposes:
The Internet Grammar of English,
http://www.ucl.ac.uk/internet-grammar/home.htm
Computer Science Tripos Part II 87
Principles of Communications
Aims
This course aims to provide a detailed understanding of the underlying principles for how
communications systems operate. Practical examples (from wired and wireless
communications, the Internet, and other communications systems) are used to illustrate
the principles.
Lectures
• The big picture for managing traffic. Economics and policy are relevant to
networks in many ways. Optimisation and game theory are both relevant topics
discussed here. [2 lectures]
88 University of Cambridge
Objectives
At the end of the course students should be able to explain the underlying design and
behaviour of protocols and networks, including capacity, topology, control and use. Several
specific mathematical approaches are covered (control theory, graph theory).
Recommended reading
Quantum Computing
Aims
The aims of the course are to introduce students to the basics of the quantum model of
computation. The model will be used to study algorithms for searching and factorisation.
Issues in the complexity of computation will also be explored.
Lectures
• Bits and qubits. Introduction to quantum states and measurements with motivating
examples. Comparison with discrete classical states.
• Linear algebra. Review of linear algebra: vector spaces, linear operators, Dirac
notation, tensor product.
• Factoring. Shor’s algorithm for factoring, its analysis. Quantum Fourier transform.
Objectives
• understand the quantum model of computation and the basic principles of quantum
mechanics;
• see how the quantum model relates to classical models of deterministic and
probabilistic computation.
Recommended reading
Books:
Kaye P., Laflamme R., Mosca M. (2007). An Introduction to Quantum Computing. Oxford
University Press.
Nielsen M.A., Chuang I.L. (2010). Quantum Computation and Quantum Information.
Cambridge University Press.
Mermin N.D. (2007). Quantum Computer Science: An Introduction. Cambridge University
Press.
Hirvensalo M. (2001). Quantum Computing. Springer.
Papers:
Braunstein S.L. (2003). Quantum computation tutorial. Available at:
https://www-users.cs.york.ac.uk/~schmuel/comp/comp_best.pdf
Aharonov D., Quantum computation [arXiv:quant-ph/9812037]
Steane A., Quantum computing [arXiv:quant-ph/9708022]
Other lecture notes:
Umesh Vazirani (UC Berkeley): http://www-inst.eecs.berkeley.edu/~cs191/sp12/
John Preskill (Caltech): http://www.theory.caltech.edu/people/preskill/ph229/
Andrew Childs (University of Maryland): http://cs.umd.edu/~amchilds/qa/
John Watrous (University of Waterloo): https://cs.uwaterloo.ca/~watrous/TQI/
90 University of Cambridge
Types
Lecturer: Dr N. Krishnaswami
No. of lectures: 12
suggested hours of supervisions: 3
Prerequisite courses: Computation Theory, Semantics of Programming Languages
Aims
The aim of this course is to show by example how type systems for programming
languages can be defined and their properties developed, using techniques that were
introduced in the Part IB course on Semantics of Programming Languages. The emphasis
is on type systems for functional languages and their connection to constructive logic.
Lectures
• Dependent types. Dependent function types. Pure type systems. System F-omega.
[2 lectures]
Objectives
• be able to use a rule-based specification of a type system to carry out type checking
and type inference;
Recommended reading
Advanced Graphics
Aims
This course provides students with a solid grounding in the main three-dimensional
modelling and rendering mechanisms. It also introduces supporting topics, including
graphics cards, mobile graphics, animation, high dynamic range imaging and
computational photography.
Lectures
• Light, colour, and dynamic range. Color vision; CIE XYZ; chromatic adaptation;
photometric units; gamma correction; high dynamic range vs. standard dynamic
range; scotopic & photopic vision. [1 lecture]
• Tone-mapping. Forward and inverse display model; glare and blooming; arithmetic
of HDR images; major approaches to tone-mapping. [2 lectures]
• Applied visual perception. Detection & discrimination; t.v.i. & CSF; simulation of
night vision. [1 lecture]
Objectives
• describe the underlying theory of subdivision and define the Catmull-Clark and
Doo-Sabin subdivision methods;
• choose the right animation technique for a given problem and discuss it;
• differentiate between different measures of light and colour, know which measure to
apply to a particular problem;
• demonstrate how selected image processing problems can be solved either using
multi-scale representation or in the gradient domain;
• explain how the limitations of the visual system can be utilized in practical problems
in graphics and imaging applications;
• explain the concept of light fields and give examples of light field rendering.
94 University of Cambridge
Recommended reading
Students should expect to refer to one or more of these books, but should not find it
necessary to purchase any of them.
* Shirley, P. & Marschner, S. (2009). Fundamentals of Computer Graphics. CRC Press
(3rd ed.).
Slater, M., Steed, A. & Chrysanthou, Y. (2002). Computer graphics and virtual
environments: from realism to real-time. Addison-Wesley.
Watt, A. (1999). 3D Computer graphics. Addison-Wesley (3rd ed).
Rogers, D.F. & Adams, J.A. (1990). Mathematical elements for computer graphics.
McGraw-Hill (2nd ed.).
Boreskov, A. & Shikin, E. (2013). Computer Graphics: From Pixels to Programmable
Graphics Hardware. CRC Press.
Reinhard, E., Heidrich, W., Debevec, P., Pattanaik, S. , Ward, G. & Myszkowski, K. (2010).
High Dynamic Range Imaging: Acquisition, Display, and Image-Based Lighting, 2nd
edition. Morgan Kaufmann.
Comparative Architectures
Aims
This course examines the techniques and underlying principles that are used to design
high-performance computers and processors. Particular emphasis is placed on
understanding the trade-offs involved when making design decisions at the architectural
level. A range of processor architectures are explored and contrasted. In each case we
examine their merits and limitations and how ultimately the ability to scale performance is
restricted.
Lectures
Objectives
• appreciate what constrains the design process and how architectural trade-offs are
made within these constraints;
• for the architectures discussed, understand what ultimately limits their performance
and application domain.
Recommended reading
Lecturer: Dr R. Gibbens
No. of lectures: 12
Suggested hours of supervisions: 3
Prerequisite courses: Mathematical Methods for Computer Science
Aims
The aims of this course are to introduce the concepts and principles of analytic modelling
and simulation, with particular emphasis on understanding the behaviour of computer and
communications systems.
Lectures
• The M/G/1 queue and its application. The Pollaczek-Khintchine formula and
related performance measures. [2 lectures]
Objectives
• be able to build simple Markov models and understand the critical modelling
assumptions;
• understand that in general as the utilization of a system increases towards unity then
the response time will tend to increase—often dramatically so;
Reference books
* Ross, S.M. (2002). Probability models for computer science. Academic Press.
Harchol-Balter, M. (2013). Performance modeling and design of computer systems:
queueing theory in action. Cambridge University Press.
Jain, A.R. (1991). The art of computer systems performance analysis. Wiley.
Kleinrock, L. (1975). Queueing systems, vol. 1. Theory. Wiley.
Mitzenmacher, M. & Upfal, E. (2005). Probability and computing: randomized algorithms
and probabilistic analysis. Cambridge University Press.
Computer Vision
Aims
The aims of this course are to introduce the principles, models and applications of
computer vision, as well as some mechanisms used in biological visual systems that may
inspire design of artificial ones. The course will cover: image formation, structure, and
coding; edge and feature detection; neural operators for image analysis; texture, colour,
stereo, and motion; wavelet methods for visual coding and analysis; interpretation of
surfaces, solids, and shapes; data fusion; probabilistic classifiers; visual inference and
learning. Issues will be illustrated using the examples of pattern recognition, image
retrieval, and face recognition.
Lectures
• Goals of computer vision; why they are so difficult. How images are formed, and
the ill-posed problem of making 3D inferences from them about objects and their
properties.
• Image sensing, pixel arrays, CCD cameras. Image coding and information
measures. Elementary operations on image arrays.
98 University of Cambridge
• Lessons from neurological trauma and visual deficits. Visual agnosias and
illusions, and what they may imply about how vision works.
Objectives
• understand visual processing from both “bottom-up” (data oriented) and “top-down”
(goals oriented) perspectives;
Computer Science Tripos Part II 99
• be able to describe and contrast techniques for extracting and representing features,
edges, shapes, and textures;
• be able to describe key aspects of how biological visual systems work; and be able
to think of ways in which biological visual strategies might be implemented in
machine vision, despite the enormous differences in hardware;
• understand in depth at least one major practical application problem, such as face
recognition, detection, or interpretation.
Recommended reading
* Forsyth, D. A. & Ponce, J. (2003). Computer Vision: A Modern Approach. Prentice Hall.
Shapiro, L. & Stockman, G. (2001). Computer vision. Prentice Hall.
E-Commerce
Aims
This course aims to give students an outline of the issues involved in setting up an
e-commerce site.
Lectures
• Web site design. Stock and price control; domain names, common mistakes,
dynamic pages, transition diagrams, content management systems, multiple targets.
• Web site implementation. Merchant systems, system design and sizing, enterprise
integration, payment mechanisms, CRM and help desks. Personalisation and
internationalisation.
• The law and electronic commerce. Contract and tort; copyright; binding actions;
liabilities and remedies. Legislation: RIP; Data Protection; EU Directives on Distance
Selling and Electronic Signatures.
• Putting it into practice. Search engine interaction, driving and analysing traffic;
dynamic pricing models. Integration with traditional media. Logs and audit, data
mining modelling the user. collaborative filtering and affinity marketing brand value,
building communities, typical behaviour.
• Finance. How business plans are put together. Funding Internet ventures; the
recent hysteria; maximising shareholder value. Future trends.
Objectives
At the end of the course students should know how to apply their computer science skills
to the conduct of e-commerce with some understanding of the legal, security, commercial,
economic, marketing and infrastructure issues involved.
Recommended reading
Shapiro, C. & Varian, H. (1998). Information rules. Harvard Business School Press.
Additional reading:
Standage, T. (1999). The Victorian Internet. Phoenix Press. Klemperer, P. (2004).
Auctions: theory and practice. Princeton Paperback ISBN 0-691-11925-2.
Information Retrieval
Lecturer: Dr H. Yannakoudakis
No. of lectures: 8
Suggested hours of supervisions: 2
Prerequisite courses: Mathematical Methods for CS (Part IB)
Computer Science Tripos Part II 101
Aims
The course is aimed to characterise information retrieval in terms of the data, problems
and concepts involved. It follows the text book “Introduction to Information Retrieval”, cf.
below. The main formal retrieval models and evaluation methods are described, with an
emphasis on indexing. Web search is also covered. Also outlined are several query
operations.
Lectures
• The Vector Space Model. (Chapter 6). VSM and Term weighting.
Objectives
• define the tasks of information retrieval, web search and classification, and the
differences between them;
• understand the main concepts, challenges and strategies used in IR, in particular the
retrieval models currently used.
• develop strategies suited for specific retrieval and classification situations, and
recognise the limits of these strategies;
• understand (the reasons for) the evaluation strategies developed for the tasks
covered.
102 University of Cambridge
Recommended reading
Aims
The Part 1B course Artificial Intelligence introduced simple neural networks for supervised
learning, and logic-based methods for knowledge representation and reasoning. This
course has two aims. First, to provide a comprehensive introduction to machine learning,
moving beyond the supervised case and ultimately presenting state-of-the-art methods.
Second, to provide an introduction to the wider area of probabilistic methods for
representing and reasoning with knowledge.
Lectures
• Bayesian networks II. Markov random fields. Approximate inference. Markov chain
Monte Carlo methods. [1 lecture]
Objectives
• Understand several state-of-the-art algorithms for machine learning and apply those
methods in practice with proper regard for good experimental practice.
Recommended reading
If you are going to buy a single book for this course we recommend:
* Bishop, C.M. (2006). Pattern recognition and machine learning. Springer.
The course text for Artificial Intelligence I:
Russell, S. & Norvig, P. (2010). Artificial intelligence: a modern approach. Prentice Hall
(3rd ed.).
covers some relevant material but often in insufficient detail. Similarly:
Mitchell, T.M. (1997). Machine Learning. McGraw-Hill.
gives a gentle introduction to some of the course material, but only an introduction.
Recently a few new books have appeared that cover a lot of relevant ground well. For
example:
104 University of Cambridge
Aims
This course will cover topics in the areas of mobile systems and communications, and
sensor systems and sensor networking. It aims to help students develop and understand
the additional complexity introduced by mobility and sensing, including energy constraints,
communication in dynamic networks and handling measurement errors. The course will be
using various applications to exemplify concepts.
Lectures
• Mobile Sensing: Modelling and Inference Mobile and wearable sensing. Inference
of activity. Modelling and machine learning for mobile devices.
• Privacy in Mobile and Sensor Systems. Concepts of location privacy. Privacy and
sensor based activity inference.
Computer Science Tripos Part II 105
Objectives
• argue for and against different mobile and sensor systems architectures and
protocols.
• Understand typical error sources for sensing and be aware of techniques to minimise
them.
• put concepts into context of current applications of mobile and sensor systems as
described in the course.
Recommended reading
Optimising Compilers
Aims
The aims of this course are to introduce the principles of program optimisation and related
issues in decompilation. The course will cover optimisations of programs at the abstract
syntax, flowgraph and target-code level. It will also examine how related techniques can
be used in the process of decompilation.
Lectures
• Classical dataflow analysis. Graph algorithms, live and avail sets. Register
allocation by register colouring. Common sub-expression elimination. Spilling to
memory; treatment of CSE-introduced temporaries. Data flow anomalies. Static
Single Assignment (SSA) form.
• Decompilation. Legal/ethical issues. Some basic ideas, control flow and type
reconstruction.
Objectives
Recommended reading
* Nielson, F., Nielson, H.R. & Hankin, C.L. (1999). Principles of program analysis.
Springer. Good on part A and part B.
Appel, A. (1997). Modern compiler implementation in Java/C/ML (3 editions).
Muchnick, S. (1997). Advanced compiler design and implementation. Morgan Kaufmann.
Wilhelm, R. (1995). Compiler design. Addison-Wesley.
Aho, A.V., Sethi, R. & Ullman, J.D. (2007). Compilers: principles, techniques and tools.
Addison-Wesley (2nd ed.).
Security II
Aims
The first half of this course completes the introduction to cryptography started Security I
(Part IB), looking at secure hash functions and public-key cryptography, including some
mathematical prerequisites and applications.
The second half of this course aims to give students additional understanding of security
engineering as a systems discipline, from security policies (modelling what ought to be
protected) to mechanisms (how to implement the protection goals). It also covers the
interaction of security with psychology and usability; anonymity; security economics, and
aspects of networking security.
Lectures
• Number theory and finite groups. Modular arithmetic, greatest common divisor,
Euclid’s algorithm, modular inversion, groups, rings, fields, finite groups, cyclic
groups, generators, Euler’s theorem, Chinese remainder theorem, modular roots,
subgroup of quadratic residues, modular exponentiation, easy and difficult problems.
[2 lectures]
Objectives
At the end of the course students should be able to tackle an information protection
problem by drawing up a threat model, formulating a security policy, and designing specific
protection mechanisms to implement the policy. They also should understand the
properties and main applications of secure hash functions, as well as the properties of,
and some implementation options for, asymmetric ciphers and signature schemes, based
on the discrete-logarithm and RSA problems.
Recommended reading
* Anderson, R. (2008). Security engineering. Wiley (2nd ed.). Freely downloadable in PDF
from http://www.cl.cam.ac.uk/users/rja14/book.html
* Katz, J., Lindell, Y. (2015). Introduction to modern cryptography. Chapman & Hall/CRC
(2nd ed.).
Further reading:
Gollmann, D. (2010). Computer security. Wiley (3rd ed.).
Cialdini, R. (2008). Influence: science and practice. Pearson (5th ed.)
Stajano, F. (2002). Security for ubiquitous computing. Wiley.
Kahneman, D. (2012). Thinking fast and slow. Penguin.
System-on-Chip Design
Aims
Over previous decades, most of the advances in computer performance have arisen from
shrinking the physical size of the computer according to Moore’s Law. But when we
reached 100 nm transistor size, Dennard Scaling ceased and new computer architectures
were required. Semiconductor physicists have provided a world where we can put much
more logic on our System On Chip (SoC) that we can conveniently power up at once (Dark
Silicon), meaning that application-specific accelerators are increasingly being used. How
else does your mobile phone compress motion video without almost immediately flattening
the battery?
In this course we examine the basic energy and performance metrics for today’s chip
multi-processors (CMPs), caches, busses and DRAM banks and examine the need for,
design of and integration of custom accelerators. We briefly visit all of the IP blocks found
on a typical SoC, as used in the Raspberry Pi. We look at the future of reconfigurable
computing and the role of FPGA in the datacentre.
110 University of Cambridge
Examples will assume knowledge of three languages, C, Verilog and assembly language
but not require any degree of proficiency in these languages.
Lecture Topics
• Energy use in Digital Hardware. Energy and delay tradeoff. Computation versus
communication. Switching activity, DVFS, DRAM.
• Masked versus Reconfigurable Logic. Chip design flow. Zynq and Ultrascale
FPGA example.
• Custom accelerator structures. Including big data, database and deep learning
examples.
• Register Transfer Language. RTL simulation and logic synthesis. Pipelined
operations. Structural, control and data hazards.
• High-level Synthesis (HLS). Goals, tool structure, profile-directed feedback, classic
paradigms and examples.
• Architectural Exploration. Transactional modelling. High-level modelling to predict
energy use and performance.
Compared with two years ago, the following changes have been made: SystemC
de-emphasised. PSL and IP Block Tour and device drivers removed. Increased emphasis
on Reconfigurable Computing, Accelerators and HLS.
Objectives
By the end of the course you should have a working knowledge of the problems faced by
today’s hardware engineers designing mobile phones and server blades. You should
understand how energy is used in computing systems and the tensions between
general-purpose, fixed-function and reconfigurable hardware.
Recommended reading
* Keating, M. (2011). The Simple art of SoC design. Springer. ISBN 9781441985859.
* OSCI. SystemC tutorials and whitepapers. Download from OSCI
http://accellera.org/community/systemc or copy from course web site.
Ghenassia, F. (2010). Transaction-level modeling with SystemC: TLM concepts and
applications for embedded systems. Springer.
Eisner, C. & Fisman, D. (2006). A practical introduction to PSL. Springer (Series on
Integrated Circuits and Systems).
Foster, H.D. & Krolnik, A.C. (2008). Creating assertion-based IP. Springer (Series on
Integrated Circuits and Systems).
Grotker, T., Liao, S., Martin, G. & Swan, S. (2002). System design with SystemC. Springer.
Wolf, W. (2009). Modern VLSI design (System-on-chip design). Pearson Education (4th
ed.).
Computer Science Tripos Part II 111
Topical Issues
Aims
The aim of this course is to broaden the experience of students by exposing them to
real-world issues which are of current interest to the computing community. Expert guest
lecturers will be used wherever possible to give an external (industrial/commercial) view.
The course title changed from “Additional Topics” to “Topical Issues” in 2010–11 for clarity
only: the substance of the course remains the same. To remain topical and account for the
diaries of external lecturers, the detailed syllabus is confirmed in the Lent term.
Objectives
• realise that the range of issues affecting the computer community is very broad;
Advanced Algorithms
Aims
The aim of this course is to introduce advanced techniques for the design and analysis of
algorithms that arise in a variety of applications. A particular focus will be on parallel
algorithms, linear programming and approximation algorithms.
Lectures
Objectives
Recommended reading
* Cormen, T.H., Leiserson, C.D., Rivest, R.L. & Stein, C. (2009). Introduction to
Algorithms. MIT Press (3rd ed.). ISBN 978-0-262-53305-8
Aims
This course is a series of seminars by former members and friends of the Laboratory
about their real-world experiences of starting and running high technology companies. It is
a follow on to the Business Studies course in the Michaelmas Term. It provides practical
examples and case studies, and the opportunity to network with and learn from actual
entrepreneurs.
Lectures
Objectives
At the end of the course students should have a better knowledge of the pleasures and
pitfalls of starting a high tech company.
Recommended reading
Lang, J. (2001). The high-tech entrepreneur’s handbook: how to start and run a high-tech
company. FT.COM/Prentice Hall.
Maurya, A. (2012). Running Lean: Iterate from Plan A to a Plan That Works. O’Reilly.
Osterwalder, A. & Pigneur, Y. (2010). Business Model Generation: A Handbook for
Visionaires, Game Changers, and Challengers. Wiley.
Kim, W. & Mauborgne, R. (2005). Blue Ocean Strategy. Harvard Business School Press.
See also the additional reading list on the Business Studies web page.
114 University of Cambridge
Aims
The course introduces two program logics, Hoare Logic and Temporal Logic, and uses
them to formally specify and verify imperative programs and systems.
One main aim is to introduce Hoare logic for a simple imperative language and then to
show how it can be used to formally specify programs (along with discussion of soundness
and completeness), and also how to use it in a mechanised program verifier.
The second thrust is to introduce temporal properties, show how these can describe the
behaviour of systems, and finally to introduce model-checking algorithms which determine
whether properties hold or find counter-examples.
Current research trends also will be outlined.
Lectures
• Axioms and rules of inference. Hoare logic for a simple language with
assignments, sequences, conditionals and while-loops. Syntax-directedness.
• Loops and invariants. Various examples illustrating loop invariants and how they
can be found. FOR-loops and derived rules. Arrays and aliasing.
• Partial and total correctness. Hoare logic for proving termination. Variants.
• Temporal properties and logic. Linear and branching time. Intervals. Path
quantifiers. Brief history. CTL and LTL. PSL for clocked hardware.
• Model checking. Simple algorithms for verifying that temporal properties hold.
Reachability analysis as a special case.
Objectives
• be able to prove simple programs correct by hand and implement a simple program
verifier;
• be familiar with the theory and use of Hoare logic and its mechanisation;
Recommended reading
Huth, M. & Ryan M. (2004). Logic in Computer Science: Modelling and Reasoning about
Systems. Cambridge University Press (2nd ed.).