calculate square of sin : sinĀ² x : (num) number that you want to calculate it's sinĀ²
x
double sqrtSin(num x) { return math.sin(x) * math.sin(x); }