{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "Computational Methods for Astronomy\n", "===================================\n", "by: **Sebastian Bustamante** *2014/2015*\n", "\n", "![](https://raw.githubusercontent.com/sbustamante/ComputationalMethods/master/material/figures/Collage.png)\n", "\n", "This course is intended for students of Astronomy and Physics at the Universidad de Antioquia \n", "and will cover some numerical methods commonly used in science and specially in \n", "astronomy. These topics will be addressed from a formal context but also keeping \n", "a practical and computational approach, illustrating many useful applications in\n", "problems of physics and astronomy.\n", "\n", "\n", "The practical component will be almost entirely developed in *Python* and \n", "slightly less in *C* (when computational performance is required). \n", "However students with knowledge in other programming languages (except\n", "privative languages like MatLab, Mathematica) are also aimed to use them.\n", "\n", "\n", "In this repository it can be found all the related material of the course, \n", "including the detailed program, notes and presentations, examples (ipython \n", "notebooks) and homeworks. (This repository may be subject to changes continuously \n", "as the course advances).\n", "\n", "\n", "[**SYLLABUS**](https://github.com/sbustamante/ComputationalMethods/raw/master/syllabus/Programa_M%C3%A9todos_Computacionales.pdf):\n", "detailed description of the program of the course, including a brief motivation and presentation, \n", "topics to be covered, evaluation and bibliography.\n", "\n", "\n", "Contents\n", "--------\n", "\n", "### 1. **Python** *(1 week)*\n", " \n", "**Topics**\n", "- [Git usage](./material/Syncing_fork.ipynb)\n", "- [Overview of python](./material/overview-python.ipynb)\n", "- [Basic scripting](./material/basic-scripting.ipynb)\n", "- [Implementation of scientific libraries](./material/scientific-libraries.ipynb)\n", "- [Plotting with matplotlib](./material/matplotlib.ipynb)\n", "- [Ipython notebooks](./material/ipython-notebooks.ipynb)\n", "\n", "**Activities**\n", "- *Activity 01:* Solve the problems in the section [Exercises](./material/Basic_exercises.ipynb). \n", "\n", "### 2. **Mathematical Preliminaries** *(1 week)*\n", " \n", "**Topics**\n", "\n", "- [Pandas](./material/Pandas.ipynb)\n", "- [Computer arithmetics and round-off methods](./material/computer-arithmetics.ipynb)\n", "- [Algorithms and convergence](./material/algorithms-convergence.ipynb)\n", "\n", "### 3. **One Variable Equations** *(2 weeks)*\n", " \n", "**Topics**\n", "- [Bisection method](./material/one-variable-equations.ipynb#Bisection-Method)\n", "- [Fixed-point iteration](./material/one-variable-equations.ipynb#Fixed-point-Iteration)\n", "- [Newton-Raphson method](./material/one-variable-equations.ipynb#Newton-Raphson-Method)\n", "- [Secant method](./material/one-variable-equations.ipynb#Secant-Method)\n", "\n", "### 4. **Interpolation Techniques** *(2 weeks)*\n", " \n", "**Topics**\n", "- [Linear interpolation](./material/interpolation.ipynb#Linear-Interpolation)\n", "- [Lagrange polynomials](./material/interpolation.ipynb#Lagrange-Polynomial)\n", "- [Divided differences](./material/interpolation.ipynb#Divided-Differences)\n", "- [Hermite interpolation](./material/interpolation.ipynb#Hermite-Interpolation)\n", "\n", "### 5. **Numerical Calculus** *(2 weeks)*\n", " \n", "**Topics**\n", "- [Numerical differentiation](./material/numerical-calculus.ipynb#Numerical-Differentiation)\n", "- [Numerical integration](./material/numerical-calculus.ipynb#Numerical-Integration)\n", "- [Composite numerical integration](./material/numerical-calculus.ipynb#Composite-Numerical-Integration)\n", "- [Adaptive quadrature methods](./material/numerical-calculus.ipynb#Adaptive-Quadrature-Methods)\n", "- [Improper integrals](./material/numerical-calculus.ipynb#Improper-Integrals)\n", "\n", "**Activities**\n", "- *Activity:* [ Derivative exercise ](http://nbviewer.jupyter.org/github/sbustamante/ComputationalMethods/blob/master/activities/T-profile-bar.ipynb)\n", "\n", "### 6. **Linear Algebra** *(2 weeks)*\n", " \n", "**Topics**\n", "- [Linear systems of equations](./material/linear-algebra.ipynb#Linear-Systems-of-Equations)\n", "- [Gaussian elimination](./material/linear-algebra.ipynb#Gaussian-Elimination)\n", "- [Pivoting strategies](./material/linear-algebra.ipynb#Pivoting-Strategies)\n", "- [Matrix inversion](./material/linear-algebra.ipynb#Matrix-Inversion)\n", "- [Determinant of a Matrix](./material/linear-algebra.ipynb#Determinant-of-a-Matrix)\n", "- [LU factorization](./material/linear-algebra.ipynb#LU-Factorization)\n", "\n", "### 7. **Differential Equations** *(2 weeks)*\n", " \n", "**Topics**\n", "- [First order methods](./material/differential-equations.ipynb#First-Order-Methods)\n", "- [High order methods](./material/differential-equations.ipynb#High-Order-Methods)\n", "- [Two-Point boundary value problems](./material/differential-equations.ipynb#Two-Point-Boundary-Value-Problems)\n", "\n", "### 8. **Statistics** *(1 week)*\n", "\n", "**Topics**\n", "- [Data adjust](./material/statistics.ipynb)\n", "- [Random Numbers](./material/statistics.ipynb#Random-Numbers)" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.4.2" }, "toc": { "colors": { "hover_highlight": "#DAA520", "running_highlight": "#FF0000", "selected_highlight": "#FFD700" }, "moveMenuLeft": true, "nav_menu": { "height": "207px", "width": "252px" }, "navigate_menu": true, "number_sections": true, "sideBar": true, "threshold": 4, "toc_cell": false, "toc_section_display": "block", "toc_window_display": false } }, "nbformat": 4, "nbformat_minor": 2 }