将循环转换为数学方程式
Convert loop into mathematical equation
如何在数学方程中表示这个 for 循环?
double n = 1;
double x = Math.pow(3, n);
for(double i = 0; i < n; i++){
x = x + Math.pow(3, i);
}
抱歉,匆忙写在Java。
for循环可以简化为
x= (pow(3,n)-1)/2
我在这里仔细检查过:
http://www.wolframalpha.com/input/?i=sum+pow%283%2Ci%29+for+i+from+0+to+%28n-1%29
如何在数学方程中表示这个 for 循环?
double n = 1;
double x = Math.pow(3, n);
for(double i = 0; i < n; i++){
x = x + Math.pow(3, i);
}
抱歉,匆忙写在Java。
for循环可以简化为
x= (pow(3,n)-1)/2
我在这里仔细检查过:
http://www.wolframalpha.com/input/?i=sum+pow%283%2Ci%29+for+i+from+0+to+%28n-1%29