Math

Math and others

Lectura de Números – Español in C++

This program reads an integer and returns its equivalent in letters. Exm: If I entered 3465, the program returns “three…

Read More »
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 »
Math and others

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 »
Math and others

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 »
Math and others

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 »
Math and others

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 »
Math and others

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 »
Math and others

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