{"id":24654948,"url":"https://github.com/mikael-ros/numerical-analysis","last_synced_at":"2026-05-16T12:35:08.659Z","repository":{"id":274043813,"uuid":"921729044","full_name":"mikael-ros/Numerical-Analysis","owner":"mikael-ros","description":"Notes, solutions and anki cards for Numerical Analysis second edition, by Timothy Sauer","archived":false,"fork":false,"pushed_at":"2025-03-10T17:55:26.000Z","size":56117,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-21T01:43:39.907Z","etag":null,"topics":["anki","computer-science","exercises","flashcards","fmnf05","lund-university","math","mathematics","notes","numerical-analysis","solutions","university"],"latest_commit_sha":null,"homepage":"https://mikaelrr.notion.site/Delade-anteckningar-Hub-LTH-D-C-f2a47297b9b146dba372e02c4f789d55?pvs=4","language":"MATLAB","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mikael-ros.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-24T14:01:33.000Z","updated_at":"2025-03-10T17:55:29.000Z","dependencies_parsed_at":"2025-03-10T18:48:52.164Z","dependency_job_id":null,"html_url":"https://github.com/mikael-ros/Numerical-Analysis","commit_stats":null,"previous_names":["mikael-ros/numerical-analysis"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikael-ros%2FNumerical-Analysis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikael-ros%2FNumerical-Analysis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikael-ros%2FNumerical-Analysis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikael-ros%2FNumerical-Analysis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mikael-ros","download_url":"https://codeload.github.com/mikael-ros/Numerical-Analysis/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244722651,"owners_count":20499153,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["anki","computer-science","exercises","flashcards","fmnf05","lund-university","math","mathematics","notes","numerical-analysis","solutions","university"],"created_at":"2025-01-25T22:19:18.808Z","updated_at":"2026-05-16T12:35:03.623Z","avatar_url":"https://github.com/mikael-ros.png","language":"MATLAB","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Notes, anki cards, and exercise solutions for Numerical Analysis\n\u003e second edition, Timothy Sauer\n\nThis 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.\n\nIt also includes my notes, and you can find my [anki cards here](https://www.github.com/mikael-ros/LTH-anki/Y3/P3/FMNF05/Book).\n\nFeel free to submit an issue, or contact me, if you discover any errors or have intellectual property rights concerns. \n\nThis 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) :)\n\n## Running locally\nIf 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:\n```sh\nmatlab -nodesktop -nojvm -nosplash\n```\n\u003e [!TIP]\n\u003e 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``.\n\nAdditionally, using the recommended extensions, you can open relevant ``.pdf`` files and split your view for efficiency.\n\nTo run any function, start your MATLAB terminal, then ``cd`` into the directory and simply write the name of the file without the ``.m`` extension.\n\n## Chapters completed\n- [x] Chapter 0: Fundamentals (partially)\n  - [x] 0.1 Evaluating polynomials\n    - [x] Notes \u0026 anki cards\n    - [x] Exercises \n    - [x] Computer problems\n  - [x] 0.2 Binary numbers\n    - [x] Notes \u0026 anki cards\n    - [x] Exercises\n  - [x] 0.3 Floating Point Representation of Real Numbers\n    - [x] Notes \u0026 anki cards\n    - [x] Exercises  \n  - [x] 0.4 Loss of significance\n    - [x] Notes \u0026 anki cards\n    - [x] ~~Exercises~~ (skipped)\n    - [x] ~~Computer problems~~ (skipped)\n  - [x] 0.5 Review of calculus\n    - [x] Notes \u0026 anki cards\n    - [x] ~~Exercises~~ (skipped)\n- [x] Chapter 1: Solving equations\n  - [x] 1.1 The bisection method\n    - [x] Notes \u0026 anki cards\n    - [x] Exercises \n    - [x] Computer problems\n  - [x] 1.2 Fixed-point iteration\n    - [x] Notes \u0026 anki cards\n    - [x] Exercises \n    - [x] ~~Computer problems~~ (skipped)\n  - [x] 1.3 Limits of accuracy\n    - [x] Notes \u0026 anki cards\n    - [x] Exercises \n    - [x] ~~Computer problems~~ (skipped) \n  - [x] 1.4 Newton's method\n    - [x] Notes \u0026 anki cards\n    - [x] Exercises \n    - [x] ~~Computer problems~~ (skipped) \n  - [x] 1.5 Root-finding without derivatives\n    - [x] Notes \u0026 anki cards\n    - [x] Exercises \n    - [x] ~~Computer problems~~ (skipped) \n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikael-ros%2Fnumerical-analysis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmikael-ros%2Fnumerical-analysis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikael-ros%2Fnumerical-analysis/lists"}