Math and others

Numerical Methods for Finding Roots of a Function in C++

Is solved using the following numerical method algorithms, coded in C++ language: Bisection False position Secant method Newton-Raphson Fixed point…

Read More »

Numerical Methods for Solving Ordinary Equations – ODEs in C++

An ordinary differential equation – ODE, is solved using the following numerical method algorithms, coded in C++ language: Euler Modified…

Read More »

Numerical Integration in C++

Is solved using the following numerical method algorithms, coded in C++ language: Trapezoidal Rule Simpson’s Rule Developed by: JOSE LUIS…

Read More »

Matrix Numerical Methods for Solving Systems of Linear Equations in C++

A system of equations is solved using the following algorithms in numerical methods, coded in C++ language: Gauss method –…

Read More »

Calculates all real and complex roots of a polynomial of degree n in C++ (NROOTS)

Calculates all real and complex roots of a polynomial of degree n The algorithm is simple: just find any root…

Read More »

Text encryptor and decryptor in C++

A program that encrypts an ACSII text document, using the Gaussian function Pi(x) and the function Primo(n). Where: Pi(x) is…

Read More »

N-Queens Problem in C++: Backtracking vs. Brute Force Algorithms

How can N queens be distributed on an N*N board without attacking each other? This program shows all the possible…

Read More »
Back to top button