Tagged Questions
The exponent tag has no wiki summary.
36
votes
8answers
925 views
Optimizations for pow() with const non-integer exponent?
I have hot spots in my code where I'm doing pow() taking up around 10-20% of my execution time.
My input to pow(x,y) is very specific, so I'm wondering if there's a way to roll two pow() ...
15
votes
5answers
631 views
Exponentiation in Haskell
Can someone tell me why the Haskell Prelude defines two separate functions for exponentiation (i.e. ^ and **)? I thought the type system was supposed to eliminate this kind of duplication.
...
4
votes
2answers
85 views
Convert mantissa and exponent into double
In a very high performance app we find the the CPU can calculate long arithmatic significantly faster then with doubles. However, in our system it was determined that we never need more then 9 decimal ...
4
votes
3answers
1k views
convert exponential to decimal in python
I have an array in python that contains a set of values, some of them are
2.32313e+07
2.1155e+07
1.923e+07
11856
112.32
How do I convert the exponential formats to the decimal format
...
3
votes
1answer
98 views
How to calculate exponents in GWT 2.3?
I needed to calculate exponents using GWT 2.3 in Java. ie: x^y. There's no native power operator in Java, normally you have to import java.lang.Math to use the pow() method. But you cannot do that in ...
3
votes
3answers
1k views
java.math.BigInteger pow(exponent) question
I did some tests on pow(exponent) method. Unfortunately, my math skills are not strong enough to handle the following problem.
I'm using this code:
BigInteger.valueOf(2).pow(var);
Results:
var | ...
3
votes
2answers
1k views
How to calculate an arbitrary power/root?
I have a application which needs to raise a number to a fractional power. The target platform is an FPGA and I can get estimates on an FPU size for it, but I need an algorithm for raising a number to ...
2
votes
4answers
86 views
Why doesn't this function exceed the value 2^31?
The power function (written in c++)...
long power (long a, long b){
long result=1l;
for (int i = 0;i<b;i++){
result*=a;
}
return result;
}
Now I do some output testing...
...
2
votes
4answers
98 views
Can you get powers of 10 faster than O(log n)?
I know that exponentiation is O(log n) or worse for most cases, but I'm getting lost trying to understand of how numbers are represented themselves. Take JavaScript, for example, because it has ...
2
votes
2answers
88 views
Numpy matrix power/exponent with modulo?
Is it possible to use numpy's linalg.matrix_power with a modulo so the elements don't grow larger than a certain value?
2
votes
2answers
119 views
In laymans terms, what does the Python string format “g” actually mean?
I feel a bit silly for asking what I'm sure is a rather basic question, but I've been learning Python and I'm having difficulty understanding what exactly the "g" and "G" string formats actually do.
...
2
votes
2answers
203 views
Python - How to convert decimal to scientific notation
How can I display this:
Decimal('40800000000.00000000000000') as '4.08E+10'?
I've tried this:
>>> '%E' % Decimal('40800000000.00000000000000')
'4.080000E+10'
But it has those extra 0's.
2
votes
2answers
178 views
Sorting a formula in Mathematica according to level of derivative or exponential
I have an impedance equation which I have transferred to Mathematica in hopes to simplify it. It is representative of a circuit schematic, and the circuit impedance (Z, from V = iZ) is a large ...
2
votes
1answer
401 views
vb.net mantissa and exponent calculation from double
Can anyone offer any advice on how to get the mantissa and exponent from a double in VB.net? I know I can do a string parse and some conversion to ints but I wondered if anyone had a mathematical ...
2
votes
4answers
800 views
Java DecimalFormat creates error when enforcing exponent sign
In Java, I am trying to get DecimalFormat to enforce the sign on an exponent sign. When it is positive I need a plus sign to appear. From what I have read this seems like a no brainer, but for myself ...
2
votes
6answers
1k views
Calculate exponents via addition only
We're writing a very simple program to execute on a processor we've built for a class. It doesn't have the capability to multiply or divide. We do however, had support for addition, subtraction, and, ...
2
votes
5answers
673 views
Large Exponents in Ruby?
I'm just doing some University related Diffie Hellmann exercises and tried to use ruby for it.
Sadly, ruby doesn't seem to be able to deal with large exponents:
warning: in a**b, b may be too big
...
2
votes
5answers
267 views
Using C: How can I determine the sizes of the components of a floating point?
I am looking for suggestions on how to find the sizes (in bits) and range of floating point numbers in an architecture independent manner. The code could be built on various platforms (AIX, Linux, ...
1
vote
1answer
49 views
Type casting in Fixnum ** Fixnum
In ruby-doc, it says that <Fixnum> ** <Numeric> may be fractional, and gives the examples:
2 ** -1 #=> 0.5
2 ** 0.5 #=> 1.4142135623731
but on my irb, it sometimes gives a ...
1
vote
2answers
43 views
C# & VSAEngine - Calculating a string expression with a exponent?
i've a prob here, so i need a help:)
When i'm calculating expression like this "(10.5 + 3.5 / 2) * 2" with jscript vsa engine, it's ok, but now i 've a question...
if in the string like above, i want ...
1
vote
1answer
71 views
UNIX sort with exponential values?
I have a csv file with 7 fields of data. I want to sort the 7th field in reverse numerial order (smallest values first). The 7th field of data looks like this:
0.498469643137
1
6.98112003175e-10
...
1
vote
1answer
132 views
Android use NumberFormat for an item of a ListView
I have a String in an Editext that I convert to a float like this :
float montantFac = Float.valueOf(etMontantFac.getText().toString());
I save it in a database and later, I get it back from the DB ...
1
vote
2answers
78 views
does php have a function that parses exponents in strings (eg: “9.5367431640625e-05”) or does it have to be done manually via regexp etc?
does php have a function that will convert a string (data type will be string since its parsed from an external source) like:
string(..) "9.5367431640625e-05"
and perform the exponent calculations ...
1
vote
2answers
181 views
Expressing number in exponential format
We are working on a flex project
I need to display a number coming from a calculation in exponential format- essentially, show 80900 as 8.09* 10^4; 4.1e-4 as 4.1*10^-4 etc
Any simple way by which I ...
1
vote
1answer
120 views
a factor that impacts RSA encryption/decryption time
"the RSA encryption or decryption time is roughly proportional to the number of bits in the exponent".
I am assuming that it counts more on the position of the bits. For example, M^e.
e1 = 10001 = 17
...
1
vote
2answers
225 views
Converting from binary to IEEE floating-point
I need to convert the binary number 0000 0110 1101 1001 1111 1110 1101 0011 to IEEE floating-point. The answer is 1.10110011111111011010011 x 2^−114, but how is the exponent derived?
1
vote
0answers
289 views
NSString encryption with modulus & exponent values of a Public Key in Objective C
I am quite new to Objective C development and came through the following problem:
I have the modulus and exponent values of a public key and need to encrypt an NSString value (password) with these ...
1
vote
3answers
539 views
C++ Question on the pow function
I'm trying to get this expression to work, I'm pretty sure its not the parenthesis because I counted all of them. Perhaps there something I'm doing wrong involving the parameter pow (x,y).
double ...
1
vote
5answers
478 views
Exponent in IEEE 754
Why exponent in float is displaced by 127?
Well, the real question is : What is the advantage of such notation in comparison to 2's complement notation?
1
vote
2answers
643 views
How to convert string with exponent to float?
I have the following string: "3.39112632978e+001" which I need to convert to float. WolframAlpha says that the result of this value is 33.9112632978 which evidently I should get somehow and I couldn't ...
1
vote
3answers
355 views
How do ldexp and frexp work in python?
The python frexp and ldexp functions splits floats into mantissa and exponent.
Do anybody know if this process exposes the actual float structure, or if it requires python to do expensive logarithmic ...
1
vote
3answers
1k views
Easier way to prevent numbers from showing in exponent notation
I'm going to rely on the saying that no question is a dumb question, but I have a slightly dumb one to ask.
EDIT:
Seems that this question has been asked and answered a few times on here already, ...
1
vote
3answers
865 views
iPhone Text Field
I have run into an issue that I have yet to be able to solve. Hopefully someone can help. I have an app that I am using to do simple calculations, some of the results are larger than the ...
0
votes
2answers
32 views
Is there a simplification for x power log to base (1/x)? [closed]
Is there a simplification for x^(log base (1/x) of N)?
0
votes
9answers
107 views
How to find the closest value of 2^N to a given input?
I somehow have to keep my program running until the output of the exponent function exceeds the input value, and then compare that to the previous output of the exponent function. How would I do ...
0
votes
1answer
63 views
Negative Number to Non-Integer Power in Javascript
I'm writing a script that has to do something like this at one point: Math.pow(-2,1.5). The result should be approximately -2.82843, but instead, Javascript returns NaN. (I tried this in both Google ...
0
votes
3answers
29 views
0
votes
2answers
113 views
Calculating a^b, where b is a negative exponent in c#
For example I am trying to calculate 9704−36 in C#.
How should i go about doing this?
I am using Visual C# 2010 Express
0
votes
0answers
145 views
iPhone RSA algorithm with modulus and exponent
I have modulus and exponent. How can I encode/decode data with RSA algotithm on iPhone? Or how can I generate DER format from modulus and exponent?
0
votes
1answer
228 views
Xcode Using Exponents
This is probably a simple question, but I a variable "side" to be divided by the square of the variable "curNum". Currently, my code for this looks like
side = inputNum/(curNum^2);
However, this ...
0
votes
1answer
813 views
RSA decryption using modulus and exponent
My task: I have encrypted (RSA) data and public key as modulus and exponent. I have to write decryption code.
My problem with it: My implementation doesn't work ;) As far as I know philosophy is ...
0
votes
3answers
149 views
How can I represent smaller Double variables with exponents in java
For example:
double a = 2000;
System.out.println(a);
Prints out 2000.0, whereas I would like to print 2E3. With a double of 2 I desire 2E0 etc.
I know that it begins to print like this when you ...
0
votes
1answer
135 views
how to use special characters in windows forms application/report
I need to use a special character (an exponent of two, aka ^2) in a windows forms application. I also need to use it in a Microsoft Report that is opened by this same windows forms application.
...
0
votes
1answer
491 views
Cocoa: NSDecimalNumber with mantissa and exponent of 0
Mathematically any number with an exponent of 0 is supposed to equal 1 (my remedial math research assures me).
But this code produces 5:
[NSDecimalNumber decimalNumberWithMantissa:5 exponent:0 ...
0
votes
2answers
8k views
SAS function for using 'power' / exponential
I may be missing something obvious, but how do you calculate 'powers' in SAS?
Eg X squared, or Y cubed?
what I need is to have variable1 ^ variable2, but cannot find the syntax... (I am using ...
0
votes
4answers
207 views
How do I combine n and e to create the public key in RSA?
I have a 128 byte (1024 bit) modulus (in a byte array format) and my exponent (also in a byte array format). I need to create a 128 bytes byte array representing the public key.
According to ...
0
votes
2answers
2k views
C# RSA encryption using modulus and public exponent
I have to implement a digital envelope using AES and RSA, but I am having problems with the .NET implementation of the RSA algorithm.
I have managed to encrypt the data (AES) with the random symetric ...
0
votes
5answers
752 views
Float to String: What is an Exponent part?
I've written a small function in C, which almost do the same work as standart function `fcvt'. As you may know, this function takes a float/double and make a string, representing this number in ANSI ...
0
votes
5answers
8k views
How do you use an exponent in c++ with a variable?
So I realize that #include is necessary, and that there is a pow(x,y) where x^y works...but when I attempted to use pow(2,(num-1)), it kicked back an error...
errorC2668: 'pow' : ambiguous call to ...
0
votes
2answers
435 views
.NET Currency exponent ISO_4217
I'm developing something for international use. Wondering if anyone can shed any light on whether the CultureInfo class has support for finding currency exponents for particular countries, or whether ...