https://github.com/mikael-ros/numerical-analysis
Notes, solutions and anki cards for Numerical Analysis second edition, by Timothy Sauer
https://github.com/mikael-ros/numerical-analysis
anki computer-science exercises flashcards fmnf05 lund-university math mathematics notes numerical-analysis solutions university
Last synced: 3 months ago
JSON representation
Notes, solutions and anki cards for Numerical Analysis second edition, by Timothy Sauer
- Host: GitHub
- URL: https://github.com/mikael-ros/numerical-analysis
- Owner: mikael-ros
- License: other
- Created: 2025-01-24T14:01:33.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-03-10T17:55:26.000Z (3 months ago)
- Last Synced: 2025-03-21T01:43:39.907Z (3 months ago)
- Topics: anki, computer-science, exercises, flashcards, fmnf05, lund-university, math, mathematics, notes, numerical-analysis, solutions, university
- Language: MATLAB
- Homepage: https://mikaelrr.notion.site/Delade-anteckningar-Hub-LTH-D-C-f2a47297b9b146dba372e02c4f789d55?pvs=4
- Size: 53.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Notes, anki cards, and exercise solutions for Numerical Analysis
> second edition, Timothy SauerThis repository contains my attempts to solve the exercises given in the aforementioned book, during my enrolment in the Numerical Analysis course (FMNF05) at Lunds Tekniska Högskola (LTH) @ Lund University : Lund, Sweden - as part of my computer science program.
It also includes my notes, and you can find my [anki cards here](https://www.github.com/mikael-ros/LTH-anki/Y3/P3/FMNF05/Book).
Feel free to submit an issue, or contact me, if you discover any errors or have intellectual property rights concerns.
This repository is part of a wider project of mine, to document my notes and exercises throughout my university degree. You can find more [here](https://mikaelrr.notion.site/Delade-anteckningar-Hub-LTH-D-C-f2a47297b9b146dba372e02c4f789d55?pvs=4) :)
## Running locally
If using this repository I strongly recommend installing MATLAB locally, and opening the repository in Visual Studio Code. Using the following command, after opening a terminal in Visual Studio Code, you can run MATLAB inside of Visual Studio Code:
```sh
matlab -nodesktop -nojvm -nosplash
```
> [!TIP]
> Add the above command as some alias in Linux, by adding ``alias matlab-console = "matlab -nodesktop -nosplash"`` to your ``~/.bashrc`` (or applicable for your shell) and then running ``source ~/.bashrc``.Additionally, using the recommended extensions, you can open relevant ``.pdf`` files and split your view for efficiency.
To run any function, start your MATLAB terminal, then ``cd`` into the directory and simply write the name of the file without the ``.m`` extension.
## Chapters completed
- [x] Chapter 0: Fundamentals (partially)
- [x] 0.1 Evaluating polynomials
- [x] Notes & anki cards
- [x] Exercises
- [x] Computer problems
- [x] 0.2 Binary numbers
- [x] Notes & anki cards
- [x] Exercises
- [x] 0.3 Floating Point Representation of Real Numbers
- [x] Notes & anki cards
- [x] Exercises
- [x] 0.4 Loss of significance
- [x] Notes & anki cards
- [x] ~~Exercises~~ (skipped)
- [x] ~~Computer problems~~ (skipped)
- [x] 0.5 Review of calculus
- [x] Notes & anki cards
- [x] ~~Exercises~~ (skipped)
- [x] Chapter 1: Solving equations
- [x] 1.1 The bisection method
- [x] Notes & anki cards
- [x] Exercises
- [x] Computer problems
- [x] 1.2 Fixed-point iteration
- [x] Notes & anki cards
- [x] Exercises
- [x] ~~Computer problems~~ (skipped)
- [x] 1.3 Limits of accuracy
- [x] Notes & anki cards
- [x] Exercises
- [x] ~~Computer problems~~ (skipped)
- [x] 1.4 Newton's method
- [x] Notes & anki cards
- [x] Exercises
- [x] ~~Computer problems~~ (skipped)
- [x] 1.5 Root-finding without derivatives
- [x] Notes & anki cards
- [x] Exercises
- [x] ~~Computer problems~~ (skipped)