How to Solve Large Integer Powers in C++?

  • Context: C/C++ 
  • Thread starter Thread starter cyber-girl
  • Start date Start date
  • Tags Tags
    C++ Power
Click For Summary

Discussion Overview

The discussion revolves around the challenge of calculating large integer powers in C++ and obtaining the result as an integer value rather than in scientific notation. Participants explore various coding approaches, potential pitfalls, and the need for specialized libraries for handling large numbers.

Discussion Character

  • Technical explanation
  • Debate/contested
  • Mathematical reasoning

Main Points Raised

  • One participant shares a code snippet for calculating powers of 10 but notes that it only works for small powers, resulting in scientific notation for larger values.
  • Another participant suggests casting the result to an integer but warns that using the pow() function may not yield exact results for large powers.
  • Some participants propose implementing a custom integer power function or using specialized libraries for large integer arithmetic, indicating that bignum arithmetic is often a student exercise.
  • There are suggestions to use C's printf() for output instead of C++ I/O, as well as to set the output format to fixed to avoid scientific notation.
  • Concerns are raised about the feasibility of expressing large floating-point results as integers, with some participants questioning the clarity of the original problem statement.
  • One participant mentions specific libraries for big integer arithmetic, such as MIRACL, and discusses licensing considerations for commercial use.
  • Another participant suggests that the task may not require advanced calculations and that simpler solutions could suffice, such as outputting numbers digit by digit.

Areas of Agreement / Disagreement

Participants express differing views on the necessity of using bignum libraries versus simpler solutions. There is no consensus on the best approach to handle large integer powers, and the discussion remains unresolved regarding the optimal method for achieving the desired output format.

Contextual Notes

Limitations include the potential for rounding errors when using floating-point representations for very large numbers and the ambiguity in the original problem statement regarding the expected output format.

cyber-girl
Messages
5
Reaction score
0
Hello everybody!
Here I wrote simple code for power of n number. At result I need to get an integer value. But my code works only small number of power. (Here in my code is p: 10^p). If I increase p number, then the result will be like this: 2.74*10^6=2.7e+006. But I need the result will be integer value: 2740000.
Thanks!
[C++]#include <iostream>
#include <iomanip>
#include <math.h>
#include <cmath>
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <conio.h>

using namespace std;

int main(){
int p;
double d;
count<<"Enter any double number: "<<endl;
cin>>d;
count<<"Enter power of integer number: "<<endl;
cin>>p;

double a = pow((double)10.0 , p);
d=d*a;
count<<"Result: "<<d;

getch();
return 0;
}
[/C++]
 
Technology news on Phys.org
cyber-girl said:
Hello everybody!
Here I wrote simple code for power of n number. At result I need to get an integer value. But my code works only small number of power. (Here in my code is p: 10^p). If I increase p number, then the result will be like this: 2.74*10^6=2.7e+006. But I need the result will be integer value: 2740000.
Thanks!
Code:
#include <iostream>
#include <iomanip>
#include <math.h>
#include <cmath>
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <conio.h>

using namespace std;

int main(){
	int p;
	double d;
	cout<<"Enter any double number: "<<endl;
	cin>>d;
	cout<<"Enter power of integer number: "<<endl;
	cin>>p;

	double a = pow((double)10.0 , p);
	d=d*a;
	cout<<"Result: "<<d;

getch();
return 0;
}

Put [ code ] and [ /code ] tags (but without the extra spaces) around your code, not [ c++ + tags.

You can cast a double to an int using a cast operator, like this:
Code:
int result;
double a = pow((double)10.0 , p);
result  = (int)a;

I don't understand this part of your code:
Code:
d=d*a;
Why are you doing this?
 
Mark44 said:
You can cast a double to an int using a cast operator, like this:
Code:
int result;
double a = pow((double)10.0 , p);
result  = (int)a;
While this most likely will work, there's no guarantee that calculating 10p via pow() will work, at least not exactly.

If you want an integer power it is much better to use your own integer power function. (Aside: There is another choice, which is to switch back to a language better suited to numerical computation. Sometimes I wonder why so many of us scientists and engineers switched from Fortran to C. Those sometimes are strongly correlated when I have to deal with matrices or when I have to compute ab.)


There are at least two other ways to solve this problem.

1. Don't use C++ I/O. It bites, particularly for output Use C's printf().
Code:
// cout<<"Result: "<<d;
printf ("Result: %f\n", d);

2. Tell the C++ output stream you want the number in fixed format.

Code:
// cout<<"Result: "<<d;
std::cout << "Result: " << std::fixed << d << "\n";
 
Thx for your answers. But the result give us with small number of power. The task is put big number of power. For ex, If I put 30 or maybe more than it (10^30), then the result must be with any double number 2.5*10^14=2500000000000000000000000000000. Is it possible to get such kind of number on the console with C/C++ language?
 
You may have to use a specialized library for dealing with large integers, or you may have to implement integer multiplication by yourself. Bignum arithmetic is quite often an exercise given to students, so could be that's what you are expected to do - hard to tell without knowing context.
 
Borek said:
Bignum arithmetic is quite often an exercise given to students, so could be that's what you are expected to do - hard to tell without knowing context.
Exactly.
 
Could you show how works the Bignum or multiple precision arithmetic in the C/C++ code?
 
You have to overload the arithmetic operators. You would, for example, define Bignum operator+ (const Bignum & a, const Bignum & b) so you could add one large number such as 1234567890123456789012345678901234567890 to some other very large number.

What exactly is the assignment you were given?
 
To display full an integer value, which calculated by this formula: doub_num*(10^num_p). Here doub_num is any double number, num_p is any big interger number (for ex, 25, 49, 102 etc). In the simple case the result of this formula gives us floating point numbers, like this: 25.7e+3. But in my task to convert that floating point numbers to an integer number. But the int number should take full correct value (answer) with very looooong numbers.
 
  • #10
What you wrote doesn't make much sense to me.

cyber-girl said:
But in my task to convert that floating point numbers to an integer number.

In general you can't express a float as an integer. Would it be possible, we would do all calculations using integers, as it is much faster.

You either have a problem expressing the question in English, or you are misunderstanding the problem.
 
  • #11
cyber-girl said:
Could you show how works the Bignum or multiple precision arithmetic in the C/C++ code?

There are many big integer libraries, and creating one that is both flexible and fast.

If you want to use a library for non-commercial purposes, MIRACL is a good library that I have used in the past and it's free for non-commercial use (read the license just to make sure for yourself) and you can download the library.

If you want to create commercial software, you will need to pay them a license though. Also if you want to release your software under an open source license of some sort (non-commercial) you will have to check the license for conditions.
 
  • #12
Code:
#include <math.h>
#include <cmath>
I don' think you need to include cmath and math.h. What I have been told is that cmath is the math library for c++, and math.h is the same thing except for C.
 
  • #13
Welcome to PF, cyber-girl! :smile:


It seems to me that a bignum-library is overkill.
Your assignment does not ask for many different types of calculations - only the basic d*10^p exponential notation.

If I understand correctly, you are not yet doing advanced classes in C++.
So I suspect the solution of DH, using std::fixed to output the number will suffice.
Note that it will indeed output long numbers, although you may get rounding errors if you have more than 15 digits.
Alternatively you could output the number digit for digit with a for-loop up to "p".



jreelawg said:
I don' think you need to include cmath and math.h. What I have been told is that cmath is the math library for c++, and math.h is the same thing except for C.

Yep. The only difference is that <cmath> has all functions in the namespace "std", while <math.h> has all functions in the global namespace (compatible with C).
 
  • #14
The other option is to just never calculate the integer in the first place.
For ex, If I put 30 or maybe more than it (10^30), then the result must be with any double number 2.5*10^14=2500000000000000000000000000000. Is it possible to get such kind of number on the console with C/C++ language?

You don't need to store an integer with value 2500000000000000000000000000000, all you need to do is print a 2, a 5, then 13 zeros
 

Similar threads

  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 6 ·
Replies
6
Views
12K
Replies
12
Views
2K
  • · Replies 30 ·
2
Replies
30
Views
5K
  • · Replies 39 ·
2
Replies
39
Views
5K
  • · Replies 4 ·
Replies
4
Views
6K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 17 ·
Replies
17
Views
2K
  • · Replies 22 ·
Replies
22
Views
4K
  • · Replies 8 ·
Replies
8
Views
4K