Tagged articles
11 articles
Page 1 of 1
AI Agent Research Hub
AI Agent Research Hub
Mar 13, 2026 · Artificial Intelligence

Deduction vs Induction: 152‑Page Review of Classical vs ML PDE Solvers

This extensive 152‑page review evaluates classical numerical solvers and machine‑learning approaches for partial differential equations using a unified six‑challenge framework, revealing that their fundamental difference lies in epistemology—deductive error bounds versus inductive statistical accuracy—and offering guidance on method choice, hybrid designs, and future research directions.

Computational ChallengesError CertificationHybrid Solvers
0 likes · 26 min read
Deduction vs Induction: 152‑Page Review of Classical vs ML PDE Solvers
Model Perspective
Model Perspective
Sep 29, 2025 · Fundamentals

How Monte Carlo Simulations Power Integration, Finance, Physics, and Optimization

The Monte Carlo method, a probabilistic numerical technique introduced in the 1940s, uses extensive random sampling to tackle high‑dimensional problems, with key applications in numerical integration, statistical simulation, financial risk assessment, physical system modeling, and optimization, highlighting its versatility and limitations.

Monte CarloNumerical MethodsPhysics
0 likes · 11 min read
How Monte Carlo Simulations Power Integration, Finance, Physics, and Optimization
Liangxu Linux
Liangxu Linux
Jul 25, 2024 · Fundamentals

Uncovering a 55‑Year‑Old Bug in the Original Lunar Lander Game

A retired software engineer revisits the 1969 text‑based Lunar Lander game, exposing a decades‑old mathematical error that causes the simulation to misjudge soft landings, and explains the physics, numerical approximations, and optimal burn strategies behind the classic program.

Lunar LanderNumerical MethodsRetro Gaming
0 likes · 11 min read
Uncovering a 55‑Year‑Old Bug in the Original Lunar Lander Game
IT Services Circle
IT Services Circle
Jul 2, 2024 · Game Development

A 55‑Year‑Old Bug in the Original Lunar Lander Game: Missing Square‑Root Factor in the Rocket Equation

The article recounts the history of the 1969 text‑based Lunar Lander game, explains how its creator used the rocket equation and Taylor series for physics simulation, and reveals a long‑standing bug—a missing factor in the square‑root denominator—that causes the optimal fuel‑burn strategy to fail, prompting a modern analysis of the error.

Bug AnalysisGame HistoryLunar Lander
0 likes · 11 min read
A 55‑Year‑Old Bug in the Original Lunar Lander Game: Missing Square‑Root Factor in the Rocket Equation
Model Perspective
Model Perspective
Jun 1, 2024 · Fundamentals

Why Do Mathematical Models Miss the Mark? Exploring Three Key Uncertainties

Mathematical modeling helps us understand complex systems, but inherent uncertainties—model, approximation, and input—can cause prediction errors; this article explains each source, illustrates them with climate, weather, and engineering examples, and offers strategies such as validation, higher‑precision numerical methods, and probabilistic analysis to mitigate their impact.

Numerical Methodsmathematical modelingmodel validation
0 likes · 7 min read
Why Do Mathematical Models Miss the Mark? Exploring Three Key Uncertainties
Model Perspective
Model Perspective
Aug 19, 2022 · Fundamentals

Mastering SciPy Optimize: From Root Finding to Global Optimization

This guide introduces SciPy's optimize module, covering scalar and multivariate minimization, global optimization algorithms, root finding, linear programming, and assignment problems, complete with clear Python code examples and explanations of each method's usage and output.

Numerical MethodsPythonRoot Finding
0 likes · 7 min read
Mastering SciPy Optimize: From Root Finding to Global Optimization
Model Perspective
Model Perspective
Jun 20, 2022 · Fundamentals

How Monte Carlo Integration Quickly Estimates Double Integrals

This article explains how Monte Carlo methods can approximate definite integrals by randomly sampling points inside a bounding box, showing the geometric interpretation, probability reasoning, and providing a Python implementation that yields a fast low‑precision estimate.

Monte CarloNumerical MethodsPython
0 likes · 3 min read
How Monte Carlo Integration Quickly Estimates Double Integrals
Model Perspective
Model Perspective
Jun 5, 2022 · Fundamentals

How to Solve ODEs Numerically in Python with SciPy’s odeint

This article explains how to obtain numerical solutions for ordinary differential equations in Python using SciPy’s odeint function, demonstrates several example problems including a simple ODE, a system converted from a second‑order equation, and the chaotic Lorenz model, and provides complete code snippets.

Lorenz AttractorNumerical MethodsODE
0 likes · 6 min read
How to Solve ODEs Numerically in Python with SciPy’s odeint
Python Programming Learning Circle
Python Programming Learning Circle
Dec 11, 2019 · Fundamentals

Master Python Optimization: Bisection, Fibonacci, Golden Section & Newton Methods

This article walks through several Python optimization techniques—including the bisection, three‑point division, Fibonacci, golden‑section, quadratic interpolation, and Newton methods—providing clear code examples, explanations of return statements, variable type handling, and debugging tips.

Bisection MethodGolden SectionNewton's method
0 likes · 12 min read
Master Python Optimization: Bisection, Fibonacci, Golden Section & Newton Methods
Programmer DD
Programmer DD
Dec 17, 2018 · Fundamentals

How to Compute √2 Efficiently: Binary Search, Newton’s Method, and C Tricks

Learn multiple techniques to calculate the square root of 2—including binary search, Newton’s iteration, and a clever C library implementation—through clear explanations, step‑by‑step illustrations, and full JavaScript and C code examples that reveal the underlying mathematics and performance considerations.

Binary SearchCNewton's method
0 likes · 4 min read
How to Compute √2 Efficiently: Binary Search, Newton’s Method, and C Tricks