PI function: Difference between revisions

From Planfix
Jump to: navigation, search
(Created page with "{{#seo: |title=PI Function |titlemode=append |keywords=planfix, function, pi |description=PI Function }} '''PI()''' — the function returns the mathematical constant "pi" with an accuracy up to 15 digits — 3.141592653589793. == Format == '''PI()''' == Example == {| class="wikitable" |- ! style="font-weight: bold" | Formula ! style="font-weight: bold" | Description ! style="font-weight: bold" | Result |- |PI() |Returns the number "pi" |3.141592654 |- |PI()/2 |Retur...")
 
 
(One intermediate revision by one other user not shown)
Line 6: Line 6:
}}
}}
'''PI()''' — the function returns the mathematical constant "pi" with an accuracy up to 15 digits — 3.141592653589793.
'''PI()''' — the function returns the mathematical constant "pi" with an accuracy up to 15 digits — 3.141592653589793.


== Format ==
== Format ==
'''PI()'''
'''PI()'''


== Example ==
== Example ==
Line 27: Line 25:
|1.570796327
|1.570796327
|-
|-
|<nowiki>PI()*POWER(;2)</nowiki>
|<nowiki>PI()*POWER({{Task.Radius}};2)</nowiki>
|The area of a circle with a radius specified in the "Radius" field. For example, the radius is 3.
|The area of a circle with a radius specified in the "Radius" field. For example, the radius is 3.
|28.27433388
|28.27433388
|}
|}


== Go To ==
== Go To ==
[[Standard functions]]
[[Standard functions]]

Latest revision as of 08:15, 16 February 2024

PI() — the function returns the mathematical constant "pi" with an accuracy up to 15 digits — 3.141592653589793.

Format

PI()

Example

Formula Description Result
PI() Returns the number "pi" 3.141592654
PI()/2 Returns the number "pi" divided by 2 1.570796327
PI()*POWER({{Task.Radius}};2) The area of a circle with a radius specified in the "Radius" field. For example, the radius is 3. 28.27433388

Go To

Standard functions