{"id":22327299,"url":"https://github.com/thisis-developer/numerical-method","last_synced_at":"2025-07-29T18:30:59.206Z","repository":{"id":64210008,"uuid":"574110406","full_name":"ThisIs-Developer/Numerical-Method","owner":"ThisIs-Developer","description":"A numerical method is an approximate computer method for solving a mathematical problem which often has no analytical solution.","archived":false,"fork":false,"pushed_at":"2023-01-31T15:29:07.000Z","size":125,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2023-04-30T20:24:21.433Z","etag":null,"topics":["bisection-method","cprogramming","euler-method","gauss-elimination","gauss-jordan","lu-factorization","newton-interpolation","newton-raphson","numerical-methods","regula-falsi","runge-kutta-methods","secant-method","taylor-method","trapezoidal-method"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ThisIs-Developer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-12-04T13:13:08.000Z","updated_at":"2023-03-27T10:13:42.000Z","dependencies_parsed_at":"2023-02-16T20:31:38.789Z","dependency_job_id":null,"html_url":"https://github.com/ThisIs-Developer/Numerical-Method","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThisIs-Developer%2FNumerical-Method","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThisIs-Developer%2FNumerical-Method/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThisIs-Developer%2FNumerical-Method/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThisIs-Developer%2FNumerical-Method/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ThisIs-Developer","download_url":"https://codeload.github.com/ThisIs-Developer/Numerical-Method/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228034992,"owners_count":17859245,"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":["bisection-method","cprogramming","euler-method","gauss-elimination","gauss-jordan","lu-factorization","newton-interpolation","newton-raphson","numerical-methods","regula-falsi","runge-kutta-methods","secant-method","taylor-method","trapezoidal-method"],"created_at":"2024-12-04T03:09:04.262Z","updated_at":"2024-12-04T03:09:04.892Z","avatar_url":"https://github.com/ThisIs-Developer.png","language":"C","readme":"# Numerical Methods [![Actions Status](https://github.com/cfgnunes/numerical-methods-python/workflows/build/badge.svg)](https://github.com/ThisIs-Developer/Numerical-Method)\n\n### Numerical methods implementation in C.\n\nA numerical method is an approximate computer method for solving a mathematical problem which often has no analytical solution. Numerical methods are techniques that are used to approximate Mathematical procedures. We need approximations because we either cannot solve the procedure analytically or because the analytical method is intractable (an example is solving a set of a thousand simultaneous linear equations for a thousand unknowns).\n\n![205492731-23de76b9-3bdc-4bd3-8064-a3b060c12da8](https://user-images.githubusercontent.com/109382325/215803125-4cbcb819-354f-4ef2-a59a-1202e032d247.jpg)\n\n## Author\n\n- [@ThisIs-Developer](https://github.com/ThisIs-Developer)\n\n## Implementations\n\n### Solutions of equations\n\n- [Bisection method](https://github.com/ThisIs-Developer/Numerical-Method/blob/main/Bisection_method.c)\n- [Newton Raphson method](https://github.com/ThisIs-Developer/Numerical-Method/blob/main/Newton_Raphson_method.c)\n- [Secant method](https://github.com/ThisIs-Developer/Numerical-Method/blob/main/Secant_method.c)\n\n### Interpolation\n\n- [Lagrange method](https://github.com/ThisIs-Developer/Numerical-Method/blob/main/Langrange_Interpolation_method.c)\n\n### Numerical integration\n\n- [Composite Trapezoidal method](https://github.com/ThisIs-Developer/Numerical-Method/blob/main/Trapezoidal_Rule.c)\n- [Composite 1/3 Simpson's method](https://github.com/ThisIs-Developer/Numerical-Method/blob/main/Simpsons_OneTthird_rule.c)\n\n### Initial-value problems for ordinary differential equations\n\n- [Euler's method](https://github.com/ThisIs-Developer/Numerical-Method/blob/main/Euler's_method.c)\n- [Taylor's method](https://github.com/ThisIs-Developer/Numerical-Method/blob/main/Taylor's_series.c)\n- [Runge-Kutta method](https://github.com/ThisIs-Developer/Numerical-Method/blob/main/Runge_Kutta_method.c)\n\n### Systems of differential equations\n\n- [Runge-Kutta method](https://github.com/ThisIs-Developer/Numerical-Method/blob/main/Runge_Kutta_method.c)\n\n### Methods for Linear Systems\n\n- [Gaussian Elimination](https://github.com/ThisIs-Developer/Numerical-Method/blob/main/Gauss_Elimination_method.c)\n- [Backward Substitution](https://github.com/ThisIs-Developer/Numerical-Method/blob/main/Newton's_Backward_interpolation.c)\n- [Forward Substitution](https://github.com/ThisIs-Developer/Numerical-Method/blob/main/Newton's_Forward_interpolation.c)\n- [Gauss Jordan Method](https://github.com/ThisIs-Developer/Numerical-Method/blob/main/Gauss_Jordan_method.c)\n\n### Factorization\n\n- [LU_factorization Method](https://github.com/ThisIs-Developer/Numerical-Method/blob/main/LU_factorization.c)\n- [Regula Falsi Method](https://github.com/ThisIs-Developer/Numerical-Method/blob/main/Regula_Falsi_method.c)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthisis-developer%2Fnumerical-method","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthisis-developer%2Fnumerical-method","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthisis-developer%2Fnumerical-method/lists"}