Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

import math x = math.pow(5.0, math.sqrt(9.0)) print(x)

Question

import math
x = math.pow(5.0, math.sqrt(9.0))
print(x)

Explanation:

Step1: Calculate square root

$\sqrt{9.0} = 3.0$

Step2: Compute power operation

$5.0^{3.0} = 125.0$

Answer:

125.0