Tagged Questions
The bigdecimal tag has no wiki summary.
29
votes
13answers
7k views
Representing Monetary Values in Java
I understand that BigDecimal is recommended best practice for representing monetary values in Java. What do you use? Is there a better library that you prefer to use instead?
27
votes
16answers
7k views
What to do with Java BigDecimal performance?
I write currency trading applications for living, so I have to work with monetary values (it's a shame that Java still doesn't have decimal float type and has nothing to support arbitrary-precision ...
23
votes
4answers
2k views
The best cross platform (portable) arbitrary precision math library
Dear ninjas / hackers / wizards,
keywords: bignum, bigint, GMP, MPFR, decNumber, BigInteger, BigDecimal, java.math.BigInteger, java.math.BigDecimal, System.Numerics.BigInteger
I'm looking for a good ...
18
votes
2answers
7k views
Non-terminating decimal expansion; no exact representable decimal result
BigDecimal a = new BigDecimal("1.6");
BigDecimal b = new BigDecimal("9.2");
a.divide(b) // results in the following exception.
Is it illegal to do the above operation. Why is that?
...
12
votes
3answers
3k views
What is the equivalent of the Java BigDecimal class in C#?
BigDecimal is a class in the java.math package that has a lot of benefits for handling big numbers of a certain scale. Is there an equivalent class or data type in c# with this feature.
12
votes
8answers
2k views
ArithmeticException thrown during BigDecimal.divide
I thought java.math.BigDecimal is supposed to be The Answer™ to the need of performing infinite precision arithmetic with decimal numbers.
Consider the following snippet:
import ...
11
votes
5answers
7k views
Raising a decimal to a power of decimal?
The .net framework provides in the Math class a method for powering double. But by precision requirement I need to raise a decimal to a decimal power [ Pow(decimal a, decimal b) ]. Does the framework ...
11
votes
13answers
3k views
What programming languages support arbitrary precision arithmetic?
What programming languages support arbitrary precision arithmetic and could you give a short example of how to print an arbitrary number of digits?
10
votes
3answers
122 views
BigDecimal notation eclipse plugin or nice external tool
I need to make a lot of operations using BigDecimal, and I found having to express
Double a = b - c * d; //natural way
as
BigDecimal a = b.subtract(c.multiply(d))//BigDecimal way
is not only ...
10
votes
6answers
6k views
Javascript BigDecimal library?
Is there a good JavaScript BigDecimal library out there?
I saw this one: http://www.stz-ida.de/index.php?option=com_remository&Itemid=48&func=fileinfo&id=13
But that looks like it was ...
10
votes
5answers
2k views
BigDecimal pain
How is it that Java's BigDecimal can be this painful?
Double d = 13.3D;
BigDecimal bd1 = new BigDecimal(d);
BigDecimal bd2 = new BigDecimal(String.valueOf(d));
System.out.println("RESULT 1: ...
9
votes
1answer
702 views
Is there a decimal math library for JavaScript?
Is there a mature library for doing decimal-based math, possibly arbitrary-precision, in JavaScript?
Edit: I want this information for a reference page on floating-point-related problems and ...
8
votes
1answer
95 views
Can i use BigDecimal as an id type in hibernate hbm?
i am using hibernate. it has id column with 20 precisions as below but of NUMBER type.
NUMBER(38,20) - this is the size given to id column of the table(Oracle database).
This id is generated by our ...
8
votes
6answers
8k views
Converting BigDecimal to Integer
I have Hibernate method which returns me a BigDecimal.
I have another API method to which I need to pass that number but it accepts Integer as parameter. I cannot change return types or variable types ...
8
votes
4answers
753 views
BigDecimal to SQL NUMBER: check for value larger than precision
In my app, I handle numbers as BigDecimal and store them as NUMBER(15,5). Now I'd need to properly check on Java if the BigDecimal values would fit the column, so that I can generate proper error ...
8
votes
6answers
2k views
Scala and Java BigDecimal
I want to switch from Java to a scripting language for the Math based modules in my app. This is due to the readability, and functional limitations of mathy Java.
For e.g, in Java I have this:
...
8
votes
4answers
8k views
Java, BigDecimal. Problems with division
I'm trying to calculate a percentage "factor". That is, given a 20%, convert it into 0.2 (my intention is to later multiply values by that and get the 20% of the values).
Anyway, the question is ...
7
votes
2answers
294 views
How can I get more than 100 decimal digits in C#?
Is it possible to get more than 100 decimal digits in C#?
If yes what is the necessary portion of code?
In Java there something call BigDecimal but it still can't reach more than 55 digits.
7
votes
2answers
101 views
How to get “shortest” BigDecimal that uniquely determines a given double
Basically, I'm curious on how to get hold of new BigDecimal(Double.toString(d)) without going through the process of creating a string.
The documentation for Double.toString is quite complex (and ...
7
votes
5answers
6k views
Safe String to BigDecimal conversion
I'm trying to read some BigDecimal values from the string. Let's say I have this String: "1,000,000,000.999999999999999" and I want to get a BigDecimal out of it. What is the way to do it?
First of ...
7
votes
2answers
866 views
Ruby BigDecimal Round: Is this an error?
While writing a test with a value that gets represented as a BigDecimal, I ran into something weird and decided to dig into it. In brief, '0.00009' when rounded to two decimal places is returned as ...
7
votes
8answers
5k views
Logarithm of a BigDecimal
How can I calculate the logarithm of a BigDecimal? Does anyone know of any algorithms I can use?
My googling so far has come up with the (useless) idea of just converting to a double and using ...
7
votes
1answer
3k views
Rounding a Java BigDecimal to the nearest interval
I have a BigDecimal calculation result which I need to round to the nearest specified interval (in this case it's the financial market tick size).
e.g. Price [Tick Size] -> Rounded Price
100.1 ...
7
votes
4answers
6k views
Is there a difference between BigDecimal(“0”) and BigDecimal.ZERO?
Either for comparisons or initialization of a new variable, does it make a difference which one of these you use?
I know that BigDecimal.ZERO is a 1.5 feature, so that's a concern, but assuming I'm ...
6
votes
5answers
138 views
Which rounding mode to be used for currency manipulation in java?
I have read on java site to use BigDecimal for currencies.
http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html
But what rounding mode we should use with? which is the most ...
6
votes
3answers
6k views
How to change the decimal separator of DecimalFormat from comma to dot/point?
Ok, so here it is.
I have this little crazy method that converts BigDecimal values into nice and readable Strings.
private String formatBigDecimal(BigDecimal bd){
DecimalFormat df = new ...
6
votes
2answers
1k views
How to do a fractional power on BigDecimal in Java?
In my little project I need to do something like Math.pow(7777.66, 5555.44) only with VERY big numbers. I came across a few solutions:
Use double - but the numbers are too big
Use BigDecimal.pow but ...
6
votes
6answers
2k views
Addition for BigDecimal
I want to do some simple sums with some currency values expressed in BigDecimal type.
BigDecimal test = new BigDecimal(0);
System.out.println(test);
test.add(new BigDecimal(30));
...
6
votes
5answers
5k views
Java library to check whether a String contains a number *without* exceptions
I'm looking for a method that returns a boolean if the String it is passed is a valid number (e.g. "123.55e-9", "-333,556"). I don't want to just do:
public boolean isANumber(String s) {
try {
...
5
votes
2answers
55 views
0E30 is not ZERO
I dont know how to handle new BigDecimal("0E30"). Its value is 0 but it doesn't compare to BigDecimal.ZERO. See below:
System.out.println(new BigDecimal("0E30").add(BigDecimal.ONE)); // ---> 1
...
5
votes
1answer
61 views
BigDecimal optimal scale for encoding
I need to encode a BigDecimal compactly into a ByteBuffer to replace my current (rubbish) encoding scheme (writing the BigDecimal as a UTF-8 encoded String prefixed with a byte denoting the String ...
5
votes
2answers
199 views
BigDecimal - to use new or valueOf
I came across two ways of getting BigDecimal object out of a double d.
1. new BigDecimal(d)
2. BigDecimal.valueOf(d)
Which would be a better approach?
Would valueOf create a new object?
In general ...
5
votes
5answers
846 views
Is there a C++ equivalent to Java's BigDecimal?
I'm looking for a C++ class that can do decimal floating point arithmetic. Looking through http://speleotrove.com/decimal/ there are links to all sorts of classes that people have written and not ...
5
votes
6answers
2k views
Java BigDecimal: Round to the nearest whole value
I've been trying to figure this out, and the previously related questions on SO aren't helping me out either..
I need the following results
100.12 -> 100.00
100.44 -> 100.00
100.50 -> ...
5
votes
2answers
1k views
Why BigDecimal(“5.50”) not equals to BigDecimal(“5.5”) and how to work around this issue?
Actually, I've found possible solution
//returns true
new BigDecimal ("5.50").doubleValue () == new BigDecimal("5.5").doubleValue ()
Of course, it can be improved with something like Math.abs (v1 ...
5
votes
5answers
4k views
round BigDecimal to nearest 5 cents
I'm trying to figure out how to round a monetary amount upwards to the nearest 5 cents. The following shows my expected results
1.03 => 1.05
1.051 => 1.10
1.05 => 1.05
1.900001 ...
5
votes
4answers
813 views
Why is the Bigdecimal(double d) construction still around?
I've noticed substantial pain over this constructor (even here on Stack Overflow). People use it even though the documentation clearly states:
The results of this constructor can be somewhat ...
4
votes
4answers
92 views
How to make updating BigDecimal within ConcurrentHashMap thread safe
I am making an application that takes a bunch of journal entries and calculate sum.
Is below way of doing it is thread/concurrency safe when there are multiple threads calling the addToSum() method. ...
4
votes
2answers
108 views
generating pi to nth digit java
I wanted to know how I can generate pi to the nth digit. I have a couple of basic ideas.
Use Math.PI and increase the precision (if that's possible)
Use Euler's formula to generate pi but even here, ...
4
votes
1answer
297 views
What type would you map BigDecimal in Java/Hibernate in MySQL?
After going through the previous develop's trainwreck of code I realized I need to move all of the money based columns to not use floating point math. On the Java side this means using BigDecimal but ...
4
votes
5answers
203 views
Java double vs BigDecimal for latitude/longtitude
When storing latitudes/longtitudes which are typically of the format: 44.087585 (i.e. max 2 numbers before the dot and 6dp) do I need to bother with bigdecimals?
4
votes
3answers
590 views
Scale() of Divide method in BigDecimal
new BigDecimal("37146555.53880000").divide(new BigDecimal("1000000")).scale()
This returns 10. But according to the API, the divide method:
Returns a BigDecimal whose value is
(this / ...
4
votes
3answers
756 views
How to always display a BigDecimal object in full decimal format instead of scientific notation?
I have a BigDecimal object, myNumber, with unknown length. For example: 12345678.
I always want to divide this number by 1 million, so I do:
myNumber.divide(BigDecimal.valueOf(1000000))
I get ...
4
votes
1answer
611 views
Ruby BigDecimal sanity check (floating point newb)
Hoping to get some feedback from someone more experienced here. I haven't dealt with the dreaded floating-point calculation before...
Is my understanding correct that with Ruby BigDecimal types (even ...
4
votes
2answers
376 views
computing large roots : bigdecimal / java
I tried to use the standard iterative algorithm to compute nth roots.
For instance (111^123)^(1/123).
The standard algorithm computes high powers of the base (in this case 111^123) which takes a lot ...
4
votes
4answers
2k views
Why does Java BigDecimal return 1E+1?
Why does this code sometimes return 1E+1 whilst for other inputs (e.g. 17) the output is not printed in scientific notation?
BigDecimal bigDecimal = ...
4
votes
3answers
1k views
Very, very large C# floating-point numbers
I am doing some population modeling (for fun, mostly to play with the concepts of Carrying Capacity and the Logistics Function). The model works with multiple planets (about 100,000 of them, right ...
3
votes
3answers
132 views
Testing if a BigDecimal value is zero in a JSP EL Expression
The following does not always behave as you would expect:
<c:if test="${someBigDecimal == 0}">
If someBigDecimal has a value of 0, but has a scale other than 0, the == operation returns ...
3
votes
1answer
62 views
How to keep the for-loop counter at 0; BigDecimal; etc
I have been trying to complete the following assignment for my college. So far, I have received help on this assignment a couple of times (which I really appreciate).
Since this is an assignment for ...
3
votes
1answer
120 views
What is a standard decimal type in Scala 2.9?
What is the Scala's analogue to C#'s decimal? Should I use java.math.BigDecimal or is there own standard type for this in Scala?