Mathematical, Physical, and Life Sciences
The Mathematical, Physical and Life Sciences division should not be overlooked by Stanford students, the tutorial system and the structure of Oxford as a whole is renowned for scientific work. There are rich opportunities to think about how a tutorial in this division can provide opportunities to study a topic more deeply and with more one-to-one contact than on the home campus.
An important thing to note is that it is not possible to provide laboratory sciences in Oxford. All tutorials should propose theoretical, not practical, programs of study. That being said, the coursework within this division is much more likely to be problem sets than essay writing, so students planning to work on math need not worry that they will necessarily be writing essays about math theory. Don’t just assume that this means you should plan to study Chemistry or Biology. Applicants often overlook the depth and breadth of courses within the humanities at Oxford. Pay attention to specifics within each department, you may find that your proposed tutorial is too broad. Luckily, you may also find ways in which you can make your tutorial more specific, or discover a new focus altogether.
Don’t just assume that this means you should plan to study English or History. Applicants often overlook the depth and breadth of courses within the humanities at Oxford. Pay attention to specifics within each department, you may find that your proposed tutorial is too broad. Luckily, you may also find ways in which you can make your tutorial more specific, or discover a new focus altogether
The Mathematical, Physical, and Life Sciences departments are
- 0201 - Chemistry
- 0202 - Computer Science
- 0203 - Earth Sciences
- 0204 - Engineering Science
- 0205 - Mathematical Institute
- 0206 - Materials
- 0207 - Physics
- 0208 - Plant Sciences
- 0209 - Statistics
- 0210 - Zoology
0201 - Chemistry
AXESS Code 196G
Taking a tutorial in Chemistry is a wonderful opportunity to work on developing a deep understanding and independence of thought in this field. Working one-on-one with a tutor is a unique experience and can help provide the foundation for senior projects, graduate study or future publication. The following topics are organized by area (organic, inorganic and physical) and sorted by which term Oxford undergraduates typically study. This is very useful, because supplementary lectures and materials will be more available for you if you choose to study that tutorial at the same time as Oxford undergraduates. Stanford students will not have access to the laboratories and it is important to bear this in mind when planning your term.
Inorganic Chemistry
Autumn Quarter
- Atomic Structure and Periodic Trends
- Ionic Model, Pre-Transition Metal and Solid State Chemistry
- Transition Metal Chemistry (prerequisite introduction to inorganic chemistry)
- Bonding in Molecules (prerequisite introduction to inorganic chemistry)
Winter Quarter
- Shapes, Symmetry and Molecular Orbital Theory
- Acids, Bases and Solution Equilibria
- Non-Metal Chemistry
- Lanthanides & Actinides (prerequisite introduction to inorganic chemistry)
- Coordination Chemistry (prerequisite introduction to inorganic chemistry)
- Organometallic Chemistry (prerequisite introduction to inorganic chemistry)
- Structures and Electronic properties of solids (prerequisite introduction to inorganic chemistry)
- Electronic properties of solids (prerequisite introduction to inorganic chemistry)
Spring Quarter
- Transition Metal Chemistry (for beginners)
- Inorganic NMR (prerequisite introduction to inorganic chemistry)
- Non-Metal Chemistry (prerequisite introduction to inorganic chemistry)
Physical Chemistry
Autumn Quarter
- States of matter and equilibrium Thermodynamics
- Quantum Mechanics and Spectroscopy
- The physical basis of Chemistry: Electromagnetism
- The physical basis of chemistry: Classical mechanics and properties of gases
- Quantum Theory (prerequisite intro to physical chemistry)
- Liquids and Solutions (prerequisite intro to physical chemistry)
Winter Quarter
- Electrochemistry
- The physical basis of Chemistry: Electromagnetism
- Quantum theory of atoms and molecules
- Kinetics
- Reaction kinetics
- Statistical Mechanics (prerequisite intro to physical chemistry)
- Atomic and Molecular Spectroscopy (prerequisite intro to physical chemistry)
- Valence (prerequisite intro to physical chemistry)
Spring Quarter
- States of Matter
- Rate Processes (prerequisite intro to physical chemistry)
Organic Chemistry
Autumn Quarter
- Introduction to Organic Chemistry
- Orbitals and Mechanisms I
- Organic Synthesis I (prerequisite intro to organic chemistry)
- Organic Spectroscopy (prerequisite intro to organic chemistry)
- Aromatic and Heterocyclic Chemistry (prerequisite intro to organic chemistry)
- Conformational Analysis and Ring Chemistry (prerequisite intro to organic chemistry)
Winter Quarter
- Substitution and Elimination at Saturated Carbons
- Core Carbonyl Chemistry
- Chemistry of C–C π-Bonds
- Physical Organic Chemistry (prerequisite intro to organic chemistry)
- Rearrangements and Reactive Intermediates (prerequisite intro to organic chemistry)
Spring Quarter
- Introduction to Biological Chemistry.
- Organic Synthesis Problem Solving (prerequisite intro to organic chemistry)
- Organic Synthesis II (prerequisite intro to organic chemistry)
- Organic Chemistry of Biomolecules (prerequisite intro to organic chemistry)
0202 - Computer Science
AXESS Code 196Q
It is likely that students who intend on studying abroad will wish to continue their study of computer science. Students should not expect to cover the same material in a tutorial as they would in a home campus course. Tutorials in computer science are one-to-one, and students present their research, findings and questions to the tutor—computer science tutors do not lecture. It is also not possible to teach new programming languages. It is worth noting that in the UK a beginners’ computer science tutorial at Oxford presumes two years of previous experience with computer science.
First year level courses
Autumn Quarter
- Discrete Mathematics: sets, union, intersection, difference, power set, algebraic laws. Functions: injectivity & surjectivity, composition & inverse. Relations, equivalence relations, and partitions; relational composition & converse, transitive closure; orders, least upper and greatest lower bounds. Combinatorial algebra: permutations, combinations, sums of finite sequences. Functions associated with combinatorial problems: ceiling, floor, factorial, combinatorial coefficients. The inclusion-exclusion principle. Recurrence relations arising from combinatorial problems. Modular arithmetic, Euclid's algorithm, and applications.
- Functional Programming: principles of functional programming: expressions, evaluations, functions, and types. Type definitions and built-in types: numbers, characters, strings and lists. Basic operations on lists, including map, fold and filter, together with their algebraic properties. Recursive definitions and structural induction. Simple program calculation. Infinite lists and their uses. Further data structures: binary trees, general trees. Use of trees for representing sets and symbolic data. Normal order reduction and lazy evaluation. Simple cost models for functional programs; time and space complexity. Uses programming language Haskell.
- Linear Algebra: vector spaces and subspaces, matrices, Inverse matrices, solution of linear systems, elementary matrix factorisations, iterative methods, linear transformations, eigenvalues and eigenvectors.
Winter Quarter
- Continuous Mathematics: differentiation of functions of one or more variables using classical, complex, and vector/matrix formulations. The operators grad and div. Taylor's theorem, and classification of turning points of multivariate functions. Integration of simple multivariate functions. Numerical integration: the trapezium rule and Simpson's rule. Ordinary differential equations: initial value problems; boundary value problems; separable solutions; solution of simple second order boundary value problems. Fourier series representation of functions, and the Fast Fourier Transform. Introduction to techniques for the numerical solution of initial value ordinary differential equations. Newton's method for the iterative solution of nonlinear equations in one and many dimensions. Optimisation of multivariate functions, and the use of Lagrange multipliers for constrained optimisation.
- Design and Analysis of Algorithms: basic strategies of algorithm design: top-down design, divide and conquer, average and worst-case criteria, asymptotic costs. Simple recurrence relations for asymptotic costs. Choice of appropriate data structures: arrays, lists, stacks, queues, trees, heaps, priority queues, graphs. Applications to sorting and searching, matrix algorithms, shortest-path and spanning tree problems. Introduction to discrete optimisation algorithms: dynamic programming, greedy algorithms. Graph algorithms: depth first and breadth first search.
- Imperative Programming Parts 1 and 2: imperative programming constructs, with informal treatment of invariants. Procedures and modules; their use in the design of large programs; specification and implementation of abstract datatypes. Data structures: arrays, reference-linked data structures. Basic tools for program development. Case studies in design of medium-sized programs. Note: this course of study tytpically includes lectures, tutorials and labs, but Stanford undergraduates are not always able to participate in labs so this should be borne in mind.
- Digital Systems: simple design of combinational and sequential circuits; standard design elements. Computer arithmetic for integers and floating-point numbers; basic error analysis. Register transfer level design of a simple microprocessor. Simple programming in assembly language. Rôle of assemblers, compilers and linkers. Memory hierarchy. Simple operating system services: file systems, processes. Principles of networked services.
Spring Quarter
- Digital Systems: continued from winter.
- Imperative Programming II: this course, given in the Scala programming language, introduces different techniques for the design, specification, and implementation of small to medium size programs within the Object-Oriented Programming (OOP) paradigm. The course only assumes familiarity with the essential concepts and constructs of imperative programming, such as conditionals, loops, etc., but it is self contained otherwise. After introducing Scala, the course focuses on three main topics: Abstract Data Types (ADTs), principles of OOP, and Design Patterns in the OOP framework.
- Introduction to Formal Proof: propositional logic: natural deduction, semantics, soundness of natural deduction rules, definition of completeness of deduction rules, sequent presentations of deduction rules. First Order (Predicate) Logic: predicate language (including definition of free variable, substitution), semantics (including signatures, domains of discourse, evaluation of quantified forms), deduction rules and proofs in predicate logic, augmenting First Order Logic with equational theories.
Second year level courses1
Autumn Quarter
- Compilers: programming language representation: concrete and abstract syntax, context free grammars. Use of lexer and parser generators. Implementation of expressions and statements in a simple language by postfix code and by simple machine code; simple optimizations. Procedures: value, name and reference parameters, local and non-local variables, static and dynamic binding. Abstract machines and storage management: activation records, static and dynamic chains, stacks and heaps. The course is based on a working implementation, written in Objective Caml, of a compiler for a language comparable to C or Pascal.
- Models of Computation: the finite-state machine. Deterministic finite automata and regular languages. Non-deterministic finite automata, and equivalence with DFA. Closure properties of regular languages. Regular expressions. The pumping lemma. The Myhill-Nerode Theorem. Context-free grammars. Pushdown automata. The Turing machine. Church's Thesis. Decision problems and undecidability. The halting problem.
- Computer-Aided Formal Verification: introduction to computer-aided formal verification. Modelling sequential systems as labeled transition systems (Kripke structures). Linear time properties. Linear temporal logic (LTL). Computation tree logic (CTL) and CTL*. Model checking CTL. Model checking LTL. Counterexamples and witnesses. Binary decision diagrams (BDD). Symbolic model checking. Model checking with SAT, bounded model checking. Completeness thresholds and k-induction. Craig interpolation. Equivalences and abstractions. Decision procedures in model checking. Practical, industrial-scale verification; present challenges
Winter Quarter
- Algorithms: amortised analysis; Disjoint sets / union-find; Binary search trees (Red-Black trees, splay trees); Max flow and min cut in networks; applications; Linear programming; NP-hardness; Approximation algorithms; Fixed-parameter tractability; Exponential algorithms; Stable matching.
- Concurrent Programming: reasons for concurrency; processes, threads; safety and liveness. Message passing concurrency; deadlock. Clients and servers. Interacting peers. Synchronous parallel computation. Patterns of concurrent programming: data parallel; bag of tasks; recursive parallel; task parallel. Low-level concurrency controls: monitors; semaphores.
- Computational Complexity: Turing machines, decision problems, time and space complexity, polynomial time algorithms, NP and NP-completeness, standard time and space complexity classes, optimization problems and approximation algorithms, randomised algorithms and complexity classes based on randomised machine models, interactive proofs and their relation to approximation.
- 1Students are strongly advised to consider whether they have an adequate foundation to pursue these tutorials.
Third year level courses2
Autumn Quarter
- Computer Security: aspects of security, security models. Tools for achieving particular security goals, attacks, and countermeasures: one-way functions, symmetric and asymmetric block ciphers including key generation and block modes, keyed hashes, digital signatures, simple key exchange protocols. Applications in practice. Prerequisites: Basic modular arithmetic; Elementary discrete probability; Java. Note: Stanford undergraduates are not guaranteed space in the practical labs.Computer-Aided Formal Verification 16 Lectures, Michaelmas Term 2017
- Databases: introduction to database management systems; entity relationship modelling; the relational model; relational algebra. Schema refinement, functional dependencies and normal forms, transaction management. Storage and indexing: B + trees. Query optimisation.
- Geometric Modelling: point, line and line segment; relative positions; polyline; Polygon, convex and concave; polyhedron; convex hull; Different kinds of geometric modellers Boundary representation modelling; Boundary representation operations; GSG introduction; interval arithmetic. GSG tree pruning; blends; integral properties; Splines introduction; Bézier curves; Drawing splines; degree elevation; Sculptured surface patches: applications; General splines; constructing splines from Bézier curves; B-splines; interpolation splines; Voronoi diagram; Delaunay triangulation; Largest empty circle; Voronoi diagram generalisation(s)
- Intelligent Systems: problem solving via search. Uninformed, informed, and local search. Planning. Dealing with geometry of physical agents. Constraint satisfaction. Adversarial search. Searching with nondeterministic actions and partial observations.
- Machine Learning: introduction to different paradigms of machine learning; Linear prediction, Regression; Maximum Likelihood, MAP, Bayesian ML; Regularization, Generlization, Cross Validation; Basics of Optimization; Linear Classification, Logisitc Regression, Naïve Bayes; Suppor Vector Machines; Kernel Methods; Neural Networks, Back Propagation; Convolutional Neural Networks; Unsupervised Learning, Clustering, k-means; Mixture Models: EM Algorithm, Topic Modelling; Dimensionality Reduction, PCA.
- Principles of Programming Languages: abstract and concrete syntax. Definitional interpreters in direct and monadic form. Functional and imperative programming. Expressible and denotable values; call by value and call by name. Continuations and abstract machines. Computational Complexity 16 Lectures, Hilary Term 2018.
Winter Quarter
- Computer Architecture: C programming language; x86-64 assembly language; Machine representation of programs; Control structures for processors, register transfer level description of hardware; Hardware description languages and simulation in Verilog; Instruction set design, instruction formats, addressing modes, ISAs; A sequential Y86-64 design; Processor pipelining, pipeline hazard detection, stalling and forwarding; Out-of-order execution and program performance optimisation; RISC and CISC instruction sets (x86-64 and ARMv8); Vector operations, SIMD and GPGPU; Memory hierarchy and memory caches; Micro-controllers for embedded applications; Alternative architectures.
- Knowledge Representation & Reasoning: representing knowledge using logic. Reasoning techniques in propositional and first order logic. Fundamental trade-off between representation power and computational properties. Fragments of first order logic suited for Knowledge Representation. Ontology languages for the Semantic Web. Non-monotonic logics. Students taking this tutorial should have completed Logic.
- Lambda Calculus and Types: terms, formal theories lambda beta and lambda beta eta, fixed point combinators; reduction, Church-Rosser property of beta-reduction and consistency of lambda beta; reduction strategies, standard reduction sequences, proof that leftmost reduction is normalising; Church numerals, definability of total recursive functions in the lambda-calculus, Second Recusion Theorem and undecidability results; combinatory algebras, combinatory completeness, basis; simple types a la Curry, type deductions, Subject Reduction Theorem, strong normalisation and consequences; type substitutions, unification, matching, correctness of Principal Type Algorithm
- Logic and Proof: syntax of propositional logic. Truth tables; Horn-SAT and 2-SAT; Binary decision diagrams; Resolution. DPLL procedure; Compactness theorem; Syntax and semantics of first-order logic; Prenex normal form and Skolemisation; Herbrand models and ground resolution; Unification and resolution for predicate logic; Undecidability of satisfiability for first-order logic; Decidable theories, including linear arithmetic.
Spring Quarter
- Computer Graphics: fundamentals of graphics hardware and software; Essential algorithms: line generation, solid area display, transformations, clipping, projection; Abstraction, and simple examples of libraries of graphics functions. Modelling of 3-dimensional solids. Rendering techniques and colour and lighting models; Input devices, interactive techniques, and the human-machine interface; Human factors in computer graphics; The tutorial assumes previous experience of practical programming in a high-level language, and simple knowledge of matrices and vectors.
- Computer Networks: the need for computer networks; layered models; Ethernet; IP; network routing and congestion control; network security.
- Concurrency: deterministic processes: traces, operational semantics; prefixing, choice, concurrency and communication. Nondeterminism: failures and divergences; nondeterministic choice, hiding and interleaving. Further operators: pipes and (time permitting) sequential composition. Refinement, specification and proof. Process algebra: equational and inequational reasoning. Schedule S2
- 2These courses should be considered graduate level and only undertaken by computer science majors at the terminus of their Stanford undergraduate career.
Fourth year level courses
Autumn Quarter
- Automata, Logic and Games
- Categories, Proofs and Processes
- Computational Game Theory
- Concurrent Algorithms and Data Structures
- Physically Based Rendering
- Probabilistic Model Checking
Winter Quarter
- Advanced Security
- Computational Learning Theory
- Computer Animation
- Database Systems Implementation
- Probability and Computing
- Quantum Computer Science
0203 - Earth Sciences
AXESS Code 199E
Oxford Earth Sciences is analogous to Stanford earth systems science. The following are tutorial topics commonly undertaken by Oxford undergraduates. If you are interested please contact the centre director to establish whether you interest can be accomplished without lab work, because laboratory access is not possible. Students who are looking for a non-humanities way to see the UK might enjoy appreciating the islands unique geology!
I.
- Planet Earth
- Fundamentals of Geology I
- Crystals and Minerals
- Minerals and Rocks
- Fundamentals of Geology II
- Geological Maps
- Invertebrate Palaeobiology
- Physics, Chemistry and Biology
- Mathematics
II.
- Fundamentals of Geology
- Sedimentary Petrology
- Structural Geology (with geological maps as practicals)
- Igneous and Metamorphic Petrology
- Sedimentology and Stratigraphy
- Geological Map
- Geophysical Methods in Geology
- Topics in Earth Sciences
- Volcanoes and the Environment
- Fundamentals of Geophysics
- High Temperature Geochemistry and Earth Structure
- Quantitative Reasoning in the Earth Sciences
- Radiogenic Isotope Geochemistry
- Stable Isotope Geochemistry
- Decoding the Fossil Record
- Remote Sensing and Active Tectonics
III.
- Geoscience Applications
- Climate System – Oceans & Atmosphere
- Solid Earth – Earthquakes, Volcanoes
- Geological Processes
- Palaeobiology – Ecosystems & Evolution
- Computational Earth
IV.
- Environmental, Rock & Palaeo-magnetism
- Planetary Chemistry
- Structure & Dynamics of the Earth’s Mantle
- Records of Major Environmental Change in Earth History
- Topics in Volcanology
- Anatomy of a Mountain Belt
- Palaeobiology
- Topics in Oceanography
0204 - Engineering Science
AXESS Codes 195H
The department was originally established in 1908 with the appointment of the first Professor of Engineering Science at Oxford. We have not previously had significant demands for tutorials in this area. It is worth noting though, that tutorial requests can be accommodated. The following are tutorial topics commonly undertaken by Oxford undergraduates. If you are interested please contact the centre director to establish whether your interest can be accomplished without lab work.
- structural and mechanical engineering
- structures, materials and dynamics
- fluid mechanics
- solid mechanics
- fluid flow, heat & mass transfer
- equilibrium thermodynamics
- materials, structures and hydraulics
- hydraulics
- control systems
- aerothermal engineering
- micromechanics and materials modelling
- mechanical performance and integrity
- advanced structures
- production engineering
- electrical engineering
- semiconductor services and advanced CMOS
- circuits and communications
- optoelectronics
- microelectronics
- power electronics
- computing
- software engineering
- electronic and information engineering
- information engineering systems
- industrial problem-solving
- communications
- machine vision and robotics
- machine learning
- mathematics
- process systems
- dynamic systems, chaos
- optimization and mathematical model
- multivariable control
- nonlinear and predictive control
- surveying
- soil mechanics
- geotechnics
- environmental engineering
- energy systems
- sustainable energy
- chemical processes
- chemical engineering
- biomedical engineering
- biomechanics
- biomedical modelling and monitoring
- bioprocesses
- medical imaging and informatics
- cellular
0205 - Mathematical Institute
AXESS Code 196N
Mathematics at Oxford, like computer science, is undertaken with a student body that already has two years of mathematics study under their belt. Students from Stanford may be surprised at the proficiency level of their peers if they forget that their Oxford counterpart has a head start. It is useful to consider your learning style when proposing a maths tutorial, as these courses can be solitary and require a good degree of library time and working through problem sets without classmates for company. Tutorials can be expected to go more deeply into fewer aspects of the topic. Students may take a tutorial equivalent of a class they have already taken on campus in order to explore aspects of the material in more depth. Remember, its best to speak with your major advisor or peer-advisor about your tutorial choice if it is important for you that the course counts in your Math major.
Below is a helpful chart that draws comparison between Stanford courses and Oxford tutorials, the equivalence indicated depends upon the topics covered in your tutorial and these topics will vary depending on your skills and requests. And a final note: The linked syllabi are of versions of the course undertaken in the past and should not be interpreted as how the course will be for you. Instead, they can be helpful to demonstrate the scope of work, and styles of work required:
Title | Supportive Lectures in Oxford | Stanford Parallel |
---|---|---|
Algebraic Curves | Winter | MATH 145 |
Algebraic Number Theory | Winter | MATH 154 |
Algebraic Topology | Autumn | MATH 215A |
Analytic Number Theory | Winter | MATH 155 |
Analytic Topology | Autumn/Spring | No easy parallel |
Axiomatic Set Theory | Winter | MATH 161 |
Banach and C* Algebras | None | None |
Banach Spaces | None | None |
Building Infinite Groups | Winter | No easy parallel |
Calculus of Variations | Spring | None |
Complex Analysis | Autumn | MATH 116 |
Equations Approximation of Functions | None | None |
Differentiable Manifolds | Autumn | MATH 147 |
Elliptic Curves | Winter | None |
Finite Group Theory | None | None |
Functional Analysis | Autumn/Spring | MATH 175 |
Galois Theory | Autumn | MATH 121 |
Geometric Group Theory | Winter | No easy parallel |
Geometry of Surfaces | Autumn | MATH 143 |
Godel's Incompleteness Theorems | Winter | No easy parallel |
Graph Theory | Autumn/Spring | MATH 107 |
Integration | Winter | MATH 172 |
Industrial and Applied Mathematics | Winter | No easy parallel |
Linear Algebra | Autumn/Winter | MATH 113 |
Martingales | Autumn | MATH 230A |
Metric Spaces | Autumn | MATH 171 |
Model Theory | Autumn | No easy parallel |
Multivariable Calculus | Winter | No easy parallel |
Number Theory | Autumn/Spring | MATH 152 |
Numerical Analysis | Spring | CME 108 |
Numerical Linear Algebra | Autumn | CME 302 |
Numerical Solution of Differential Equations | Winter | MATH 220A |
Probabilistic Combinatorics | Winter | MATH 159 |
Set Theory | Winter | MATH 161 |
Stochastic Differential Equations | Winter/Autumn | MATH 236 |
Topology | Spring/Winter | MATH 144 |
Topology and Groups |
Autumn | MATH 148 |
0206 - Materials
No AXESS Code at present
The Department of Materials at the University of Oxford was founded in the 1950s as the Department of Metallurgy. World leading research is done in the broad fields of structural and nuclear materials, device materials, polymers and biomaterials, nanomaterials, processing and manufacturing, characterization, and computational materials modelling. At Oxford, we have not previously had demands for tutorials in this area. It is worth noting though, that tutorial requests can be accommodated. The following are tutorial topics commonly undertaken by Oxford undergraduates. If you are interested please contact the centre director to establish whether your interest can be accomplished without lab work.
- Structure of materials
- Structure and transformation of materials
- Properties of materials
- Electronic properties of materials
- Mechanical properties
- Transforming materials
- Mathematics for materials science
- Crystallography
- Engineering applications of materials
- Communication skills
0207 - Physics
AXESS Code 195W
Taking a tutorial in Physics is a wonderful opportunity to work on developing a deep understanding and independence of thought in this field. Working one-on-one with a tutor is a unique experience and can help provide the foundation for senior projects, graduate study or future publication. Along with mathematics, physics is a popular tutorial option for Stanford undergraduates. Give some thought to your academic foundations and how independently you feel you can work on a given topic, and remember-no practicals! Stanford students will not have access to the laboratories and it is important to bear this in mind when planning your term.
- Classical Mechanics
- Astrophysics: from Planets to the Cosmos
- Quantum Ideas
- Quantum Mechanics
- Philosophy of Quantum Mechanics
- Condensed Matter Physics
- General Relativity and Cosmology
0208 - Plant Sciences
AXESS Code 195B
The Department of Plant Sciences at the University of Oxford focuses on research and teaching in plant and fungal biology. Forestry was an important part of the university under the name of the Imperial Forest Institute, from 1924, later the Commonwealth Forest Institute from 1939. The Oxford Forestry Institute was incorporated into the Department of Plant Sciences in 2002, and research relating to forestry is now undertaken under the department's name. Biology at Oxford is divided between the departments of plant sciences and zoology. The following topics are acceptable for tutorials in the Plant Sciences department:
- Cells & Genes
- Ecology and Evolution
- Adaptations to the Environment
- Cell & Developmental Biology
- Disease
- Ecology
- Plants and People
- Ecology of Terrestrial Ecosystems: Past, present and future
- Evolutionary Ecology
- Forestry: genetics, silviculture and policy
- Metabolic Adaptation in Plants
- Molecular mechanisms of cell function
- Plant Diversity on an Oceanic Island
- Plant Development - Genetics and Evolution
- Plant signaling and growth
- Soils, roots and food security
- Species conservation
- Tropical Forest Ecology
0209 - Statistics
AXESS Code 198N
The Department of Statistics at Oxford is a world leader in research including computational statistics and statistical methodology, applied probability, bioinformatics and mathematical genetics. In the 2014 Research Excellence Framework, Oxford's Mathematical Sciences submission was ranked overall best in the UK. Statistics is taught separately from mathematics, and can be taken in Autumn and Winter quarter alongside complementary lectures, or in Spring quarter independently.
Autumn Quarter options
- Applied Statistics
- Foundations of Statistical Inference
- Applied Probability
- Actuarial Science I
Winter Quarter options
- Computational Statistics
- Statistical Machine Learning
- Statistical Lifetime Models
- Actuarial Science
0210 - Zoology
AXESS Codes 196K
Biology at Oxford is divided between zoology and plant sciences. The Department of Zoology is at the centre of Oxford's research and teaching in whole organism biology. Research is centered on the four themes of behaviour, disease, ecology and evolution. The following topics are acceptable for tutorials in Zoology:
- Cells & Genes
- Organisms
- Evolution
- Adaptations to the Environment
- Animal Behaviour
- Cell & Developmental Biology
- Disease
- Ecology
- Animal Cognition
- Animal Locomotion: Evolutionary Biomechanics
- Behavioural Ecology
- Communication, Culture and Collective Behaviour
- Development and Evolution of Animals
- Human Evolutionary Genetics
- Infection and Immunity
- Marine Ecology
- Molecular mechanisms of cell function
- Social Evolution
- Species conservation
- Theoretical Epidemiology