Files
freeCodeCamp/guide/english/mathematics/exponents-basic-rules/index.md
Mr_patcher b5adcf2084 added guide for exponents (#24631)
I added formulas for the basic rules of exponents and information about 0^0=? (whether it is 1 or 0).
2019-01-20 14:50:39 +07:00

32 lines
1.3 KiB
Markdown

---
title: Exponents Basic Rules
---
## Exponents Basic Rules
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/mathematics/exponents-basic-rules/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.
<a href='https://github.com/freecodecamp/guides/blob/master/README.md' target='_blank' rel='nofollow'>This quick style guide will help ensure your pull request gets accepted</a>.
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
### Rules of Exponents
The nine laws for exponents are:
- x<sup>1</sup> = x
- x<sup>0</sup> = 1
- x<sup>-m</sup> = 1/x<sup>m</sup>
- x<sup>m</sup> * x<sup>n</sup> = x<sup>m+n</sup>
- x<sup>m</sup> / x<sup>n</sup> = x<sup>m-n</sup>
- (x<sup>m</sup>)<sup>n</sup> = x<sup>m*n</sup>
- (x / y)<sup>2</sup> = x<sup>2</sup> / y<sup>2</sup>
- x<sup>m/n</sup> = <sup>n</sup>√(x<sup>m</sup>)
## 0<sup>0</sup> = ?
0<sup>0</sup> has no correct answear but is generally taken as 1. More information about it can be found [here](https://en.wikipedia.org/wiki/Zero_to_the_power_of_zero)
#### More Information:
- https://www.mathsisfun.com/algebra/exponent-laws.html
- https://en.wikipedia.org/wiki/Zero_to_the_power_of_zero
<!-- Please add any articles you think might be helpful to read before writing the article -->