{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Introduction to Numerical Methods and Analysis with Python\n",
    "\n",
    "**Brenton LeMesurier**\n",
    "College of Charleston, Charleston, South Carolina\n",
    "[lemesurierb@cofc.edu](mailto:lemesurierb@cofc.edu),\n",
    "with contributions by Stephen Roberts (Australian National University)\n",
    "\n",
    "**Last Revised June 13, 2024**\n",
    "\n",
    "For notes on recent changes and plans for further revisions, see\n",
    "[Revision notes and plans](revision-notes-todos.ipynb)."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "This is published at\n",
    "http://lemesurierb.people.cofc.edu/introduction-to-numerical-methods-and-analysis-python/"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The primary language used for computational examples is Python and the related packages Numpy and Matplotlib, and it also contains a tutorial on using Python with those packages; this is excerpted from the Jupyter book *Python for Scientific Computing* by the same author."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "I am working on an evolution of this to cover further topics, and with some more advanced material on analysis of methods, to make it suitable for courses up to introductory graduate level.\n",
    "\n",
    "There is also a parallel edition that presents examples using the\n",
    "[Julia programming language](https://julialang.org/) in place of Python;\n",
    "this can be found at the predictable location\n",
    "http://lemesurierb.people.cofc.edu/introduction-to-numerical-methods-and-analysis-julia/\n",
    "\n",
    "Both of these are based on\n",
    "[Elementary Numerical Analysis with Python](http://lemesurierb.people.cofc.edu/elementary-numerical-analysis-python/),\n",
    "my notes for the course *Elementary Numerical Analysis* at the University of Northern Colorado in Spring 2021),\n",
    "in turn based in part on Jupyter notebooks and other materials for the courses MATH 245, MATH 246, MATH 445 and MATH 545 at the College of Charleston, South Carolina, as well as MATH 375 at the University of Northern Colorado.\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "---\n",
    "This work is licensed under [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/)"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3 (ipykernel)",
   "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.9.18"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 4
}
