Integral

Hallo liebe Programmierfans…

ich bin ziemlich neu in der Programmierung von Java…und leider au nicht so gut in Mathe…
ich muss eine methode schreiben die das Integral berechnet…

ich bin mal soweit gekommen, aber irgendwie…weiß ich nicht mehr weiter…ich muss doch in der main methode die blub() aufren???damit das pgm es überhaupt berechnet???
Ich weiß nicht mal ob ich das richtig gemacht habe…

class Mathutil
{
public double blub( double[] a, double[] b )
{
  double sum =0;
  for (int i=0; i< a.length; i=i+1)
 { 
   sum = sum + a** * b**; 
  }
  return sum;
 }
}

public class integralRiemann
{
  public static void main( String[ ] arg )
  {
    double[] a= {1.0d, 2.0d, 3.0d, 4.0d};
    double[] b= {1.0d, 2.0d, 2.0d, 2.0d };
    double result;
  }
}

WÜrde mich um hilfe sehr freuen

du musst ein neues Objekt von Mathutil anlegen und dann blub aufrufen