Tagged Questions
The exponentiation tag has no wiki summary.
15
votes
5answers
629 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.
...
15
votes
12answers
5k views
What does the ^ operator do in Java?
What function does the "^" operator serve in Java?
When I try this:
int a = 5^n;
...it gives me:
for n = 5, returns 0
for n = 4, returns 1
for n = 6, returns 3
...so I guess it doesn't ...
12
votes
7answers
999 views
How to do exponentiation in clojure?
Well, I guess the title says it all, how can I do exponentiation in clojure?
For now I'm only needing integer exponentiation, but the question goes for fractions too.
10
votes
3answers
615 views
Efficient way to compute p^q (exponentiation), where q is an integer
What is an efficient way to compute pq, where q is an integer?
7
votes
5answers
2k views
Fastest modular exponentiation in JavaScript
My problem is to compute (g^x) mod p quickly in JavaScript, where ^ is exponentiation, mod is the modulo operation. All inputs are nonnegative integers, x has about 256 bits, and p is a prime number ...
7
votes
4answers
2k views
Fast exponentiation when only first k digits are required?
This is actually for a programming contest, but I've tried really hard and haven't got even the faintest clue how to do this.
Find the first and last k digits of nm where n and m can be very large ~ ...
6
votes
4answers
174 views
Finding integer power roots
What is the best (most efficient) algorithm for finding all integer power roots of a number?
That is, given a number n, I want to find b (base) and e (exponent) such that
n = be
I want to ...
5
votes
5answers
225 views
Using exponentiation **0.5 less efficient than math.sqrt?
A quote from "Python Programming: An Introduction to Computer Science"
We could have taken the square root
using exponentiation **. Using
math.sqrt is somewhat more efficient.
"Somewhat", ...
5
votes
4answers
469 views
first n digits of an exponentiation
How do i determine the first n digits of an exponentiation (ab).
eg: for a = 12, b = 13 & n = 4, the first 4 digits are 1069.
5
votes
5answers
3k views
How do you do *integer* exponentiation in C#?
The built-in Math.Pow() function in .NET raises a double base to a double exponent and returns a double result.
What's the best way to do the same with integers?
Added: It seems that one can just ...
4
votes
1answer
281 views
Element-wise power of scipy.sparse matrix
How to I raise a scipy.sparse matrix to a power, element-wise? numpy.power should, according to its manual, do this, but it fails on sparse matrices:
>>> X
<1353x32100 sparse matrix of ...
4
votes
4answers
1k views
ASP.NET CSV Response, Excel Exponential Format Issue
In my ASP.NET application, I need to write DataTable as CSV response to the customer. Everything is working fine except a column which has a numbers.
Ex: 7002136138603600000
But when I open the CSV ...
4
votes
2answers
816 views
Fast exponentiation: real^real (C++ MinGW, Code::Blocks)
I am writing an application where in a certain block I need to exponentiate reals around 3*500*500 times. When I use the exp(y*log(x)) algorithm, the program noticeably lags. It is significantly ...
3
votes
3answers
204 views
Exponentiation of a Java BigInteger with a value lower than 1 [closed]
Possible Duplicate:
How to do a fractional power on BigDecimal in Java?
I have a BigInteger A that I need to exponentiate with 1/b (b is an int).
My problem is that A supports only ...
3
votes
3answers
971 views
Modular Exponentiation in Java
I need a way to calculate:
(g^u * y^v) mod p
in Java.
I've found this algorithm for calculating (g^u) mod p:
int modulo(int a,int b,int c) {
long x=1
long y=a;
while(b > 0){
...
2
votes
2answers
126 views
Minimal addition-chain exponentiation
I know it has been proven NP-complete, and that's ok. I'm currently solving it with branch and bound where I set the initial upper limit at the number of multiplications it would take the normal ...
2
votes
5answers
130 views
Raise 10 to a power in javascript, are there better ways than this
I have a need to create an integer value to a specific power (that's not the correct term, but basically I need to create 10, 100, 1000, etc.) The "power" will be specified as a function parameter. ...
2
votes
2answers
152 views
How to implement exponentiation of a rational number without nth root?
Its available for me only log(base "e"), sin, tan and sqrt (only square root) functions and the basic arithmetical operators (+ - * / mod). I have also the "e" constant.
I'm experimenting several ...
2
votes
2answers
278 views
Tail-recursive pow() algorithm with memoization?
I'm looking for an algorithm to compute pow() that's tail-recursive and uses memoization to speed up repeated calculations.
Performance isn't an issue; this is mostly an intellectual exercise - I ...
2
votes
4answers
2k views
Modular Exponentiation for high numbers in C++
So I've been working recently on an implementation of the Miller-Rabin primality test. I am limiting it to a scope of all 32-bit numbers, because this is a just-for-fun project that I am doing to ...
1
vote
3answers
119 views
Efficient Exponentiation For HUGE Numbers (I'm Talking Googols)
I am in the midst of solving a simple combination problem whose solution is 2^(n-1).
The only problem is 1 <= n <= 2^31 -1 (max value for signed 32 bit integer)
I tried using Java's BigInteger ...
1
vote
1answer
124 views
In 10. power / calculation / Power calculations
i am working on an apps for calculating fuel...
i need to know how i can power a number in 10?
the Excel code is "10^1.5"
1
vote
3answers
998 views
Fast exponentiation implementation
Could someone please point out a site where I can find an algorithm to efficiently calculate integer exponentiation to large powers using C#?
eg. I want to calculate 2^60000 or 3^12345
1
vote
3answers
806 views
Problem using map with a list of lists in Haskell
I am using Haskell to solve problem 99 in euler project, where I must find the maximum result from a list of base exponent pairs.
I came up with this:
prob99 = maximum $ map ((fst)^(snd)) numbers
...
1
vote
3answers
296 views
Raising to power in PHP
Well, i need to do some calculations in PHP script. And i have one expression that behaves wrong.
echo 10^(-.01);
Outputs 10
echo 1 / (10^(.01));
Outputs 0
echo bcpow('10', '-0.01') . ...
0
votes
1answer
100 views
Matlab - Reading unixtimestamps using dlmread [closed]
Possible Duplicate:
Is it possible to show numbers in non-engineering format in Matlab?
am reading a set of unix timestamps from a file using dlmread
say
1311120481
1311120542
1311120603
...
0
votes
1answer
76 views
How can I get an algorithm to do a exponentiation of a float exponent?
I'm developing a small application in Deluge (zoho.com). There isn't a "^" operator or a "pow" function to do exponentiation. Getting worst, I'm supposed to do exponentiations also with float ...
-1
votes
2answers
256 views
Floating exponent exponentiation algorithm
I must to write a algorithm that exponentiates a base (integer or float) in a integer or float argument. I wrote this algorithm for Deluge (zoho.com), but it can only use integer exponents:
float ...