Hallo ich habe bei folgender Aufgabe Probleme
Ich habe bisher die (a) und die (b):
public static double f(double x) {
return 2* (x*x)+4;
}
public static double a(double x){
return -4*x;
}
public static double newtonO(double x){
return x - (f(x) / a(x));
}
weiter verstehe ich nicht