import com.blaisemath.math.*;
public class MathApp {
public static void main(String[] args) {
double num = 25;
double sqrt = MathFunctions.sqrt(num);
double[] vector1 = {1, 2, 3};
double[] vector2 = {4, 5, 6};
double dotProduct = MathFunctions.dotProduct(vector1, vector2);
}
}