Site icon Learn C++

Learn To Use Mathematical And Trigonometric Functions In C++

C & C++ is good to operate in mathematical operations because of its wide variety of variable definitions, wise memory usage and it’s operators in mathematics. C++ has a lot of mathematical functions that you can do mathematical tasks. Some operators may work with integers, some works with floating numbers, most are usable with both integer and floating (or double) numbers. All functions can be found in the <cmath> library, so you must include this library before using these functions, like this.

[crayon-6605fa24cda37055905003/]

Also note that some of compilers may require options to use these mathematical operands. (i.e in GNU C/C++ you must use -lm option)

Here are some of mathematical functions used in C++;

pow(), powf() and powl()
pow functions are are used to find power of double floating numbers, example below results a power b,

[crayon-6605fa24cda43640104898/]

powf() is used for floating numbers and powl() is used for long floating numbers.

sqrt() and cbrt(),
sqrt() function is used to get square root of a given value, see below,

[crayon-6605fa24cda47770625059/]

cbrt() is used to get cubic root of a given value

[crayon-6605fa24cda49359871442/]

round(), floor() and ceil()
round() function returns rounds of number
floor() function returns the given value rounded down to its nearest integer
ceil() function returns the given value rounded up to its nearest integer

[crayon-6605fa24cda4a935854555/]

min() and max()
min() and max() functions are used to find minimum and maximum number of pairs

[crayon-6605fa24cda50269075554/]

abs() and fabs(), Absolute

[crayon-6605fa24cda51974814015/]

Trigonometric Functions

Here we listed some of trigonometric functions below,

[crayon-6605fa24cda53147127867/]

All of these functions and more can be found in cmath library.

In addition to these functions, In C++ Builder, VCL and FMX applications have most of these functions starts with upper case i.e. Max(), Min(), Sin(), Cos() etc.

Finally library also has some constants, i.e Pi number which is used to calculate peripheral and circular area of a circle as below,

[crayon-6605fa24cda54776373608/]
Exit mobile version