This manual page is for Mac OS X version 10.6.3

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



POW(3)                                  BSD Library Functions Manual                                  POW(3)

NAME
     pow -- power function

SYNOPSIS
     #include <math.h>

     double
     pow(double x, double y);

     long double
     powl(long double x, long double y);

     float
     powf(float x, float y);

DESCRIPTION
     The pow() functions compute x raised to the power y.

SPECIAL VALUES
     pow(+-_, y) returns +-infinity and raises the "divide-by-zero" floating-point exception for y an odd
     integer < 0.

     pow(+-_, y) returns +infinity and raises the "divide-by-zero" floating-point exception for y < 0 and
     not an odd integer.

     pow(+-_, y) returns +-0 for y an odd integer > 0.

     pow(+-_, y) returns +0 for y > 0 and not an odd integer.

     pow(-1, +-infinity) returns 1.

     pow(1, y) returns 1 for any y, even a NaN.

     pow(x, +-_) returns 1 for any x, even a NaN.

     pow(x, y) returns a NaN and raises the "invalid" floating-point exception for finite x < 0 and finite
     non-integer y.

     pow(x, -infinity) returns +infinity for |x| < 1.

     pow(x, -infinity) returns +0 for |x| > 1.

     pow(x, +infinity) returns +0 for |x| < 1.

     pow(x, +infinity) returns +infinity for |x| > 1.

     pow(-infinity, y) returns -0 for y an odd integer < 0.

     pow(-infinity, y) returns +0 for y < 0 and not an odd integer.

     pow(-infinity, y) returns -infinity for y an odd integer > 0.

     pow(-infinity, y) returns +infinity for y > 0 and not an odd integer.

     pow(+infinity, y) returns +0 for y < 0.

     pow(+infinity, y) returns +infinity for y > 0.

     A domain error occurs if x is finite and negative and y is finite and not an integer.

     A domain error can occur if x is 0 and y less than or equal to 0.

     Range errors may occur.

SEE ALSO
     math(3)

STANDARDS
     The pow() function conforms to ISO/IEC 9899:1999(E).

4th Berkeley Distribution                     December 11, 2006                    4th Berkeley Distribution

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation with the feedback links below.
Bug reports
Report bugs in the functionality of the described tool or API through Bug Reporter.
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.

Did this document help you? Yes It's good, but... Not helpful...