Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / mathematics

Mathematics

mathematics

Great Reads

by Artem Los
“Trits” instead of “bits” – A short introduction to balanced ternary
by Ryan Scott White
A C# struct/class library for large Floating-Point numbers
by JorgeLuisOrejel
This article describes the implementation of Dijkstra's Smoothsort as a generic sorting algorithm in C#.
by subskybox
Exploiting JavaScript's weakly typed implicit data type conversions, the 52 bit mantissa and common bit hacks.

Latest Articles

by Artem Los
“Trits” instead of “bits” – A short introduction to balanced ternary
by Ryan Scott White
A C# struct/class library for large Floating-Point numbers
by JorgeLuisOrejel
This article describes the implementation of Dijkstra's Smoothsort as a generic sorting algorithm in C#.
by subskybox
Exploiting JavaScript's weakly typed implicit data type conversions, the 52 bit mantissa and common bit hacks.

All Articles

Sort by Score

mathematics 

by José Cintra
Simple algorithm to determine the type of a triangle, being informed its sides
by Tim-bot
Simple calculation to determin a value at a percentage along a bell curve. Also with an offcenter curve intersection thing....
by Gunnar S
Implementation of the Poisson Cumulative Distribution function for large Lambdas
by Grant Curell
A basic copiable count sort implementation.
by Askar Azhibaev
Calculating the pi number faster using a simple formula
by Patrick Harris
Class for converting decimals and fractions (allows rounding to a decimal also)
by bEGI23
Convert filesize (bytes) according to highest possible size scale (KB, MB, GB, TB, PB).
by José Cintra
Tips for creating mathematical cross-platform applications in JavaScript and display formulas and other content with MathJax and JQuery Mobile.
by Mohammad Kazem Akhgary
Algorithm of gamma function with high precision using taylor series
by YvesDaoust
Computation of the Faulhaber polynomials coefficients
by Andrew Rissing
A method for calculating a Fibonacci number without using loops or recursion.
by Brian C Hart
This tip illustrates a simple C# console program that uses the Sieve of Eratosthenes algorithm to quickly find prime numbers.
by Bill Anderson
Here's an alternative. This one uses the BitArray class in C# and does not use the % operator.static List SeiveWithoutMod(int candidate){ BitArray sieveContainer = new BitArray(candidate + 1, true); int marker = 2; //start int factor = 2; //start. sieveContainer[0]...
by George Swan
The following method starts by selecting the number 2 and eliminates each multiple of 2 up to N. Then the next valid number is selected and each multiple of it is eliminated. The process is repeated until all valid numbers have been tested. So the first three multiples to be eliminated are...
by Dennis_E
This solution uses half the space by simply ignoring all even numbers. It will require a little index calculation. Also, primes are generated one by one instead of returning a list.Another optimization can be made by starting the crossing out of multiples of a prime p at p2. Any smaller number...
by Bill Anderson
Hi,Thanks for the feedback for alternative #1 from above (and thank you, Jurgen Rohr for your suggestion! I replaced the "reset" line with:while (!sieveContainer.Get(++marker));factor = marker;Here is another algorithm that's slightly different. It's not as elegant an approach, but...
by ExcelledProducts CEO
Closest latitude and longitude to a referenced latitude and longitude.
by Uladzislau Baryshchyk
Technologies for creating interactive software modules in the Wolfram Mathematica
by Yerzhan Kalzhani
This is light, fast and simple to understand mathematical parser designed in one class, which receives as input a mathematical expression (System.String) and returns the output value (System.Double)
by lampiclobe
An infinite number implementation with advanced division and modulus operators.
by Jacob F. W.
A Practical Introduction to Efficient Modular Exponentiation
by Jacob F. W.
Algorithms for Logarithms and Powers
by YvesDaoust
You should be delighted by the CORDIC approach to elementary functions computation.http://drdobbs.com/184404244[^]log10(x){ z = 0; for ( i=1; i= 1) x = x - x*2^(-i); z = z - log10(1-2^(-i)); else x = x + x*2^(-i); ...
by JinWenQiang
This tip is a brief introduction of Network Calculus. I used Matlab codes to show you the results and to explain how it works.
by José Cintra
Generic algorithm to generate mathematical sequences
by Sergei Lazarev
Algorithm for calculating primes based on research on primes
by Cryptonite
This code gives a solution to the Chinese Remainder Theorem using totients instead of the Extended Euclidean algorithm.
by DrABELL
Statistical Outliers detection in Microsoft Excel worksheet using Median() and array formula
by Jacob F. W.
Adding and subtracting a 128 Bit Unsigned Integer
by Jacob F. W.
Bit Operations on a 128 Bit Unsigned Integer
by Jacob F. W.
Dividing and Modulo with a 128 Bit Unsigned Integer
by Jacob F. W.
Multiplying and Squaring a 128 Bit Unsigned Integer
by Jack Devey
This post delves into the perplexing Monty Hall paradox, examining the probabilities associated with sticking or switching doors in the game scenario.
by Hossein Montazeri
A class to conduct a lottery, based on different chances of winning for every participant