NUMERICALCULATOR is a web application that allows you to perform numerical calculations. It is written in Python and uses the Flask framework. You can convert numbers from one base to another, find the IEEE 754 representation of a number, find the roots of a function using different methods, and more. The application is still in development, so some features may not work properly. If you find any bugs, feel free to contact me.

Binary Converter

Enter a number to convert

IEEE 754 Representation

Enter a number to convert

Enter the exponent to build a custom precision
Enter the mantissa to build a custom precision

Bisection Method

Enter a function to find its roots
\frac{\sin(x)}{x}
Lower bound of the interval
Upper bound of the interval
Tolerance of the method
Maximum number of iterations

False Position Method

Enter a function to find its roots
\frac{\sin(x)}{x}
Lower bound of the interval
Upper bound of the interval
Tolerance of the method
Maximum number of iterations

Newton-Raphson Method

Enter a function to find its roots
x^2-2
Initial guess: x0
Tolerance of the method
Maximum number of iterations

Secant Method

Enter a function to find its roots
x^2-2
First initial guess: x0
Second initial guess: x1
Tolerance of the method
Maximum number of iterations

Numerical Derivative

Enter a function to find its derivative
x^2-2
Point to evaluate: x
Step size: h
Formula to use

Numerical Integral

Enter a function to find its integral
x^2-2
Lower bound of the interval
Upper bound of the interval
Number of subintervals: n
Formula to use