diff --git a/src/algorithms/math/fast-powering/fastPowering.js b/src/algorithms/math/fast-powering/fastPowering.js
index 4f4a6b3571..6d7b5c751e 100644
--- a/src/algorithms/math/fast-powering/fastPowering.js
+++ b/src/algorithms/math/fast-powering/fastPowering.js
@@ -9,6 +9,11 @@
  * @return {number}
  */
 export default function fastPowering(base, power) {
+  if (power === 1) {
+    // Any number raised to the power of one is always that number
+    return base;
+  }
+
   if (power === 0) {
     // Anything that is raised to the power of zero is 1.
     return 1;