<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/refs.math.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'book.math.php',
    1 => 'Math',
    2 => 'Mathematical Functions',
  ),
  'up' => 
  array (
    0 => 'refs.math.php',
    1 => 'Matematiksel Eklentiler',
  ),
  'prev' => 
  array (
    0 => 'gmp.unserialize.php',
    1 => 'GMP::__unserialize',
  ),
  'next' => 
  array (
    0 => 'math.constants.php',
    1 => '&Ouml;ntanımlı Sabitler',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/math/book.xml',
  ),
  'history' => 
  array (
  ),
  'extra_header_links' => 
  array (
    'rel' => 'alternate',
    'href' => '/manual/en/feeds/book.math.atom',
    'type' => 'application/atom+xml',
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="book.math" class="book">
 
 <h1 class="title">Mathematical Functions</h1>
 

 
 <div id="intro.math" class="preface">
  <h1 class="title">Giriş</h1>
  <p class="para">
   These math functions will only handle values within the range of
   the <span class="type"><a href="language.types.integer.php" class="type int">int</a></span> and <span class="type"><a href="language.types.float.php" class="type float">float</a></span> types.
   To handle larger numbers, take a look at the
   <a href="book.bc.php" class="link">arbitrary precision math</a> or
   <a href="book.gmp.php" class="link">GNU Multiple Precision functions</a> functions.
  </p>

  <div class="section">
   <h2 class="title">Ayrıca Bakınız</h2>
   <p class="para">
    <ul class="simplelist">
     <li>
      <a href="language.operators.arithmetic.php" class="link">arithmetic operators</a>
     </li>
     <li>
      <a href="book.bc.php" class="link">Arbitrary precision math functions</a>
     </li>
     <li>
      <a href="book.gmp.php" class="link">GNU Multiple Precision functions</a>
     </li>
    </ul>
   </p>
  </div>
 </div>
 

 




 



 








<ul class="chunklist chunklist_book"><li><a href="math.constants.php">&Ouml;ntanımlı Sabitler</a></li><li><a href="enum.roundingmode.php">RoundingMode</a> — The RoundingMode Enum</li><li><a href="ref.math.php">Math İşlevleri</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="function.abs.php">abs</a> — Absolute value</li><li><a href="function.acos.php">acos</a> — Arc cosine</li><li><a href="function.acosh.php">acosh</a> — Inverse hyperbolic cosine</li><li><a href="function.asin.php">asin</a> — Arc sine</li><li><a href="function.asinh.php">asinh</a> — Inverse hyperbolic sine</li><li><a href="function.atan.php">atan</a> — Arc tangent</li><li><a href="function.atan2.php">atan2</a> — Arc tangent of two variables</li><li><a href="function.atanh.php">atanh</a> — Inverse hyperbolic tangent</li><li><a href="function.base-convert.php">base_convert</a> — Convert a number between arbitrary bases</li><li><a href="function.bindec.php">bindec</a> — Binary to decimal</li><li><a href="function.ceil.php">ceil</a> — Round fractions up</li><li><a href="function.cos.php">cos</a> — Cosine</li><li><a href="function.cosh.php">cosh</a> — Hyperbolic cosine</li><li><a href="function.decbin.php">decbin</a> — Decimal to binary</li><li><a href="function.dechex.php">dechex</a> — Decimal to hexadecimal</li><li><a href="function.decoct.php">decoct</a> — Decimal to octal</li><li><a href="function.deg2rad.php">deg2rad</a> — Converts the number in degrees to the radian equivalent</li><li><a href="function.exp.php">exp</a> — Calculates the exponent of e</li><li><a href="function.expm1.php">expm1</a> — Returns exp($num) - 1, computed in a way that is accurate even
   when the value of number is close to zero</li><li><a href="function.fdiv.php">fdiv</a> — Divides two numbers, according to IEEE 754</li><li><a href="function.floor.php">floor</a> — Round fractions down</li><li><a href="function.fmod.php">fmod</a> — Returns the floating point remainder (modulo) of the division
  of the arguments</li><li><a href="function.fpow.php">fpow</a> — Raise one number to the power of another, according to IEEE 754</li><li><a href="function.hexdec.php">hexdec</a> — Hexadecimal to decimal</li><li><a href="function.hypot.php">hypot</a> — Calculate the length of the hypotenuse of a right-angle triangle</li><li><a href="function.intdiv.php">intdiv</a> — Integer division</li><li><a href="function.is-finite.php">is_finite</a> — Checks whether a float is finite</li><li><a href="function.is-infinite.php">is_infinite</a> — Checks whether a float is infinite</li><li><a href="function.is-nan.php">is_nan</a> — Checks whether a float is NAN</li><li><a href="function.log.php">log</a> — Natural logarithm</li><li><a href="function.log10.php">log10</a> — Base-10 logarithm</li><li><a href="function.log1p.php">log1p</a> — Returns log(1 + number), computed in a way that is accurate even when
   the value of number is close to zero</li><li><a href="function.max.php">max</a> — Find highest value</li><li><a href="function.min.php">min</a> — Find lowest value</li><li><a href="function.octdec.php">octdec</a> — Octal to decimal</li><li><a href="function.pi.php">pi</a> — Get value of pi</li><li><a href="function.pow.php">pow</a> — Exponential expression</li><li><a href="function.rad2deg.php">rad2deg</a> — Converts the radian number to the equivalent number in degrees</li><li><a href="function.round.php">round</a> — Rounds a float</li><li><a href="function.sin.php">sin</a> — Sine</li><li><a href="function.sinh.php">sinh</a> — Hyperbolic sine</li><li><a href="function.sqrt.php">sqrt</a> — Square root</li><li><a href="function.tan.php">tan</a> — Tangent</li><li><a href="function.tanh.php">tanh</a> — Hyperbolic tangent</li></ul></li></ul></div><?php manual_footer($setup); ?>