Tagged Questions
45
votes
16answers
8k views
Is JavaScript's Math broken?
0.1 + 0.2 == 0.3
// returns false
0.1 + 0.2
// returns 0.30000000000000004
Any ideas why this happens?
17
votes
4answers
2k views
regex matching irreducible fraction
How can I match irreducible fraction with regex?
For example, 23/25, 3/4, 5/2, 100/101, etc.
First of all, I have no idea about gcd-algorithm realisation in regex.
UPD: for all answer like "You are ...
11
votes
2answers
548 views
How can I make a “working” repeating decimal representation of a rational number?
I've figured out how to display the repeating part of a repeating decimal using OverBar.
repeatingDecimal doesn't actually work as a repeating decimal. I'd like to make a variation of it that looks ...
10
votes
4answers
425 views
What is the best way to separate double into two parts “integer & fraction” in java
I have tried to separate 5.6 (for example) by the following method:
private static double[] method(double d)
{
int integerPart = 0;
double fractionPart = 0.0;
integerPart = (int) d;
...
5
votes
2answers
100 views
Is Java Contradicting Itself?
Should I declare Math.round(1/2) in Java to be an int or a double? If both are fine, which is more correct?
Also, why is it that Eclipse is telling me Math.round(1/2) = 0.0, while Math.round(0.5) = ...
5
votes
3answers
92 views
Rounding rationals in (0, 1) to the nearest unit fraction
What's a good algorithm for the following problem?
Given a rational a / b strictly between 0 and 1, find a natural n that minimizes |a / b - 1 / n|.
The simplest algorithm I can think of is to ...
4
votes
1answer
127 views
Simplifying fractions in C#
I have made a console app that adds and subtracts fractions, I have added a function to simplify:
public static Numbers Add(Numbers n1, Numbers n2)
{
int den1;
int num1;
...
4
votes
2answers
105 views
floating point numbers - closest number to 1.7
I'm preparing for some exams and one of the questions given in the past is to find the closest number to 1.7 given an imaginary floating point format that has a total of 8 bits (1 for sign, 3 for ...
4
votes
3answers
447 views
Egyptian Fractions in C
The ancient Egyptians only used fractions of the form 1/n so any other fraction had to be represented as a sum of such unit fractions and, furthermore, all the unit fractions were different!
What is ...
3
votes
5answers
140 views
Floating-Point Arithmetic = What is the worst precision/difference from Dec to Binary?
as all know decimal fractions (like 0.1) , when stored as floating point (like double or float) will be internally represented in "binary format" (IEEE 754). And some decimal fractions can not ...
3
votes
3answers
587 views
How to simplify fractions?
How to simplify a fraction in C#? For example, given 1 11/6, I need it simplified to 2 5/6.
3
votes
6answers
794 views
How can I turn a floating point number into the closest fraction represented by a byte numerator and denominator?
How can I write an algorithm that given a floating point number, and attempts to represent is as accurately as possible using a numerator and a denominator, both restricted to the range of a Java ...
1
vote
5answers
124 views
Using Python to create a Unit Circle calculator?
As a younger programmer, I'm always trying to look for applications of my skills.
Anyways, I'm currently taking trig and we're working on unit circles, the formula for converting from degrees to a ...
1
vote
1answer
71 views
Convert number of weeks in decimal to fraction
I ma struggling with this mathematical-based query.
I have the difference in seconds between two dates, and would like to convert the number of seconds to a fraction. I have the decimal working well, ...
1
vote
4answers
53 views
__rsub__ and __rtruediv__ with fractions
I'm attempting to use the __rsub__ function in a class I've made called Fraction.
Here's the Fraction class code:
def __init__(self, num, denom):
''' Creates a new Fraction object num/denom'''
...
1
vote
4answers
163 views
Fraction class overflow (C++)
I've built a normal fraction class for basic operations. Only problem is that since there a huge number of operations ( I'm doing Gaussian Elimination ) there is an overflow either for the numerator ...
1
vote
2answers
97 views
Now I can't get the numerator to output any number. When I do this I get 0/whatever denominator. What am I missing?
//This program evaluates an expression of two fractions added or subtracted
#include <iostream>
#include <cmath>
using namespace std;
int CrossMultiplication(int, char, int);
int ...
1
vote
5answers
1k views
How to simplify fractions in C#?
I'm looking for a library or existing code to simplify fractions.
Does anyone have anything at hand or any links?
P.S. I already understand the process but really don't want to rewrite the wheel
...
1
vote
1answer
683 views
Calculating negative fractions in Objective C
I've been coding my way through Steve Kochan's Programming in Objective-C 2.0 book. I'm up to an exercise in chapter 7, ex 4, in case anyone has the book.
The question posed by the exercise it will ...
0
votes
1answer
43 views
Is there a replacement for method or function Frac in .NET that will take DateTime parameter?
I am working with Delphi Prism for .NET. I need to be able to take DateTime Value and separate the time from the date. I can do that on Win32 Delphi by using Frac function. I can't seem to find ...
0
votes
2answers
170 views
How do I pass a fraction to python as an exponent in order to calculate the nth root of an integer?
I'm attempting to write a simple python script that will calculate the squareroot of a number. heres the code i've come up with and it works. but i would like to learn how to use fractional exponents ...
0
votes
2answers
147 views
Math Question in JS - How do I get a ratio from a percentage
I'm trying to make a converter, but i don't know the formula to do this, for example, how do I get the ratio of 85694 of 30711152. So, i can get the % like 85694/30711152*100=0.28 (rounded) but how do ...
0
votes
3answers
330 views
A way to get a math answer in fraction form
I'm trying to write a program that will help someone study for the GRE math. As many of you may know, fractions are a big part of the test, and calculators aren't allowed. Basically what I want to do ...