Java ME中的Math.pow()方法使用详解

开发 后端
本文向您介绍Java ME中的Math.pow()方法,包括使用Math.pow()产生整数解、使用几何衰变算法作为强力解的ME Math.pow()等。

使用 Java 开发移动设备应用程序时,可能需要用到特定 Java VM 所没有的数学方法。本文将专门解决 Java ME 没有“幂”方法 Math.pow() 的问题。我们将演示使用三种不同的方法开发同一个 ME 应用程序,并从中选出***的编程解决方案。

要讨论此问题,我们先考察整数和分数幂参数,将我们的分析限于正实数。我们将演示求整数问题和小数问题的解集相对而言比较容易(而不考虑指数的符号)。在大多数情况下,我们将使用示例问题 n = 82/3,其中我们会求出 n 的良好估计或实际解。如果初始指数事先不可用,则此问题的其他解(包括牛顿法和割线法)不易编程。虽然二分法是可行的解决方案,但我们将关注传统上不为人所探究的三个方法。***个是简单的(不过有时效率低下)几何衰变算法;而第二个方法将利用 Math.sqrt() 方法并保证在不超过 11 次迭代中收敛到一个近似解。第三个方法将使用泰勒级数逼近法求对数并对泰勒级数进行欧拉转换。

产生整数解的 ME Math.pow() 方法

传统上,Java Math.pow() 方法包含两个参数。这两个参数包括底数和指数。我们假定(最初)这两个参数均为整数,然后求出 ME 中与 Java 方法使用相同参数的 Math.pow() 方法的可编程解。此处,可编程解相当简单,如示例 1 所示。在本例中,我们仅运行以指数值为指标的倍乘循环。

示例 1

  1. int pow( int x, int y) /*we define the power method with  
  2.     base x and power y (i.e., x^y)*/ 
  3. {  
  4.   int z = x;  
  5.   forint i = 1; i < y; i++ )z *= x;  
  6.   return 
  7. }  

当然,有人可能会发现需要求出非整数幂的值。正实数的简单解(无需访问 Math.pow() 方法)可能涉及使用 Math.log()。例如,请考虑 82/3 的情况。利用 2/3*ln(8) = 1.386294361 中自然对数的结果。要得到最终解,需要利用指数 1.386294361(特别指出 e1.386294361 = 4)。在这种情况下,可能不需要使用幂函数。遗憾的是,Java ME 也不支持 Math.log() 方法。没有 Math.pow() 或 Math.log() 方法时,我们会考虑使用朴素的“强力”试探性方法,应用 Math.sqrt() 方法以及自然对数(和欧拉 e)的泰勒级数逼近来求得 Java ME 问题的解。

使用几何衰变算法作为强力解的 ME Math.pow()

Java ME 的早期实现包括浮点主数据类型 float 和 double。最近,已添加了这些类型。现在我们将 Math.pow() 声明中的整型参数替换为 double 数据类型。

可能需要在 Java ME Math.pow() 幂方法中使用小数指数。我们提供的生成 Math.pow() 的***种方法是使用几何衰变算法的朴素的“强力”试探性方法。简单而言,衰变算法以一个大于已知解的值开始,然后应用某个方法来衰变该值,直到该值非常逼近该解(有关简单线性衰变算法的演示,请参见示例 2)。在我们的例子中,将进一步演示向上述解收敛的几何形式。

示例 2

  1. /* This example illustrates a simplistic decay algorithm that we will assume  
  2. converges to our desired solution (a positive integer) */ 
  3. int n; // assume that n is the solution to the number we are trying to find  
  4. int varX = 1000; //assume that we know the solution is less than or equal to 1000  
  5. while( varX > 0 )  
  6. {  
  7.   varX -= 1// decrement by 1  
  8.   if( varX == n)return varX;  

在示例 2 中,我们从 1000 开始递减,直到找到预期的数字,假定预期数字是一个正整数。这种类型的算法构成了强力试探性方法的基础。

使用类似的方法,我们可在遇到小数时应用此算法。假定我们需要求出 n 的值,其中 n = 82/3。要使用衰变算法,我们必须首先找到一个合适的起点,该点要等于或大于解本身。这对于带有正指数的正实数很容易做到。对于我们的示例,要对此解进行编程,对方法两边求立方,得到 n3=82 。当然,此方程与 n3=64 等效。之后,我们的起始值将变为 64,我们知道 n 必须小于 64(因为 n3 = 64)。注意,如果限于正实数,则此推导方法同样适用于任何正指数值。现在,我们可能需要设计一个循环来产生 n 的“充分接近”预期数字的解。我们再来看示例 3,它适合于所有正底数和正指数。

示例 3

  1. double pow( double x, double y ) //we define our new power method for fractions  
  2. {  
  3.   int den = 1000// specify arbitrary denominator  
  4.   int num = (int)(y*den); // find numerator  
  5.   int s = (num/den)+1;  
  6.   /***********************************************************************  
  7.   ** Variable 's' provides the power for which we multiply the base to find  
  8.   ** our starting search value. For example, if we seek a solution for  
  9.   ** n = 8^(2/3), then we will use 8^2 or 64 as our starting value (which is  
  10.   ** generated in our next section of code.) Why? The solution for our  
  11.   ** problem (given that the base is positive) will always be less than or  
  12.   ** equal to the base times the numerator power.  
  13.   ************************************************************************/ 
  14.   /***********************************************************************  
  15.   ** Because we set the denominator to an arbitrary high value,  
  16.   ** we must attempt to reduce the fraction. In the example below,  
  17.   ** we find the highest allowable fraction that we can use without  
  18.   ** exceeding the limitation of our primitive data types.  
  19.   ************************************************************************/ 
  20.   double z = Double.MAX_VALUE;  
  21.   while( z >= Double.MAX_VALUE )  
  22.   {  
  23.     den -=1// decrement denominator  
  24.     num = (int)(y*den); // find numerator  
  25.     s = (num/den)+1// adjust starting value  
  26.     // find value of our base number to the power of numerator  
  27.     z = x;  
  28.     forint i = 1; i < num; i++ )z *= x;  
  29.   }  
  30.   /***********************************************************************  
  31.   ** Now we are going to implement the decay algorithm to find  
  32.   ** the value of 'n'.  
  33.   ************************************************************************/ 
  34.   /***********************************************************************  
  35.   ** We now find 'n' to the power of 's'. We will then decrement 'n',  
  36.   ** finding the value of 'n' to the power of the denominator. This  
  37.   ** value, variable 'a', will be compared to 'z'. If the 'a' is nearly  
  38.   ** equal to 'z', then we will return 'n', our desired result.  
  39.   ************************************************************************/ 
  40.   double n = x; // We define 'n' as our return value (estimate) for 'x'.  
  41.   // find 'n' to the power of 's'.  
  42.   forint i = 1; i < s; i++)n *= x;  
  43.   // Begin decay loop  
  44.   while( n > 0 )  
  45.   {  
  46.     double a = n; //proxy for n  
  47.     // find 'a', the value of 'n' to the power of denominator  
  48.     forint i = 1; i < den; i++ )a *= n;  
  49.     // compare 'a' to 'z'. Is the value within the hundred-thousandth?  
  50.     // if so, return 'n'.  
  51.     double check1 = a-z;  
  52.     double check2 = z-a;  
  53.     if( check1 < .00001|| check2 > .00001 ) return n;  
  54.     n *= .999;// We arbitrarily use a decay of .1% per iteration  
  55.   }  
  56.   // value could not be found, return -1.  
  57.   return -1.0;  

本示例演示了衰变算法的使用方法。您会注意到,n 的值(解的估计值)将按 1% 强制递减。您可能需要根据编程精度要求来改变此值。也可能考虑包括编程逻辑,该逻辑用于将前一迭代解与当前迭代进行比较,然后,如果有改善继续进行迭代,但是,如果解已回归,则返回前一个值。

这里讲述的解只处理正指数。如果值为负会出现什么情况呢?下面我们将解决这种意外情况。

处理负指数

要再增加一层复杂度,假定正在向 Math.pow() 方法传递负指数。在这种情况下,指数为负,一种简单的解决方案是将底数转换为小数,使指数为正。例如,8-2 可转换为 (1/8)2。我们以可编程的方式用底数 x 来除 1,用 -1 来乘 y(参见示例 6)。

示例 6

  1. if( y < 0 )  
  2. {  
  3.   x = (1/x); // convert base number to fraction  
  4.   y *= -1// make exponent positive  

现在,我们已经讨论了用于在 Java ME 中估计幂函数的“强力”几何衰变算法。读者会注意到,对于较大的底数和指数分子组合,朴素的“强力”试探性方法有性能问题。请考虑示例 85/2。使用此算法的起始值将为 85 = 32,768。如果使用 1% 的衰变,则要求全部 5196 次迭代都求该解,这样几乎达不到***。谨记此事实并且不提供改善的试探性搜索算法,我们转到二次逼近,这会提供更多合理的迭代要求。#p#

使用 Math.sqrt() 方法的 ME Math.pow()

开发我们的 Math.pow() 方法的第二种方法是通过使用 Math.sqrt() 方法(参见示例 7)。使用Math.sqrt() 方法要求我们对具有偶分母的幂进行估计。例如,n = 82/3 => n3 = 82 是一个棘手问题,因为我们需要立方根,而非平方根。为了调整示例中的此问题,我们我们就对两端再求一次平方:n3 = 82 => n6 = 84。然后,我们就可以继续进行,恰好在两次迭代之内求出解。

当然,我们的 ME Math.pow() 方法的指数不会以分子和分母的形式开始,而是向我们传递一个实数。我们将此实数转换为具有偶分母的小数,然后利用相应的平方根数来对
n 求解。在我们的 n = 82/3 示例中,我们进行如下转换:
n = 82/3 => n = 8683/1024 => n1024 = 8683
我们选择 1024 作为分母,因为对平方根函数迭代 10 次将得到 n 的值。特别指出,(n1024)(1/(2^10)) = n。当然,我们可能需要根据方程右侧的大小来减少迭代次数。示例 7 演示了这种方法。

示例 7

  1. ouble pow(double x, double y)  
  2. {       
  3.   //Convert the real power to a fractional form  
  4.   int den = 1024//declare the denominator to be 1024  
  5.   /*Conveniently 2^10=1024, so taking the square root 10  
  6.   times will yield our estimate for n. In our example  
  7.   n^3=8^2  n^1024 = 8^683.*/ 
  8.   int num = (int)(y*den); // declare numerator  
  9.   int iterations = 10; /*declare the number of square root  
  10.     iterations associated with our denominator, 1024.*/ 
  11.   double n = Double.MAX_VALUE; /* we initialize our      
  12.     estimate, setting it to max*/ 
  13.   while( n >= Double.MAX_VALUE && iterations > 1)  
  14.   {  
  15.     /* We try to set our estimate equal to the right  
  16.     hand side of the equation (e.g., 8^2048). If this  
  17.     number is too large, we will have to rescale. */ 
  18.     n = x;  
  19.     forint i=1; i < num; i++ )n*=x;  
  20.     /*here, we handle the condition where our starting  
  21.     point is too large*/ 
  22.     if( n >= Double.MAX_VALUE )  
  23.     {  
  24.       iterations--; /*reduce the iterations by one*/ 
  25.       den = (int)(den / 2); /*redefine the denominator*/ 
  26.       num = (int)(y*den); //redefine the numerator  
  27.     }  
  28.   }  
  29.   /*************************************************  
  30.   ** We now have an appropriately sized right-hand-side.  
  31.   ** Starting with this estimate for n, we proceed.  
  32.   **************************************************/ 
  33.   forint i = 0; i < iterations; i++ )  
  34.   {  
  35.     n = Math.sqrt(n);  
  36.   }  
  37.   // Return our estimate  
  38.   return n;  

自然对数和欧拉 e 的泰勒级数逼近

对于正实数产生 Math.pow() 方法最简便的方式之一是链接几个方法,包括使用 泰勒级数。假定我们需要幂 y = xb。该式与 ln(y) = b*ln(x) 等价。进而,我们可以使用泰勒级数扩展估算 x 的自然对数,如下所示。

  1. ln(x) = (x-1) –(x-1)2/2 + (x-1)3/3 - (x-1)4/4….if |x-1|<=1 OR  
  2. ln(x) = 1/(x/(x-1)) + 1/(x/(x-1))2 + 1/(x/(x-1))3… if |x|>1 

由于 x 为正,因而 x 的整个域为这些方程所覆盖。此交错级数可以提供对底数对数的非常接近的逼近。用指数乘以此对数将得到 ln(y),方程的右侧 ln(y)=b*ln(x)。现在,我们仅需求出 eln(y) 即可完成运算。我们使用另一个泰勒级数扩展来完成此过程:ex = 1 + x + x2 / 2! + x3 / 3! + … 使用这两个公式,即可求得问题的解,如示例 8 所示。

示例 8

  1. double pow(double a, double b)  
  2. {  
  3.   // true if base is greater than 1  
  4.   boolean gt1 = (Math.sqrt((a-1)*(a-1)) <= 1)? false:true;  
  5.   int oc = -1// used to alternate math symbol (+,-)  
  6.   int iter = 20// number of iterations  
  7.   double p, x, x2, sumX, sumY;  
  8.   // is exponent a whole number?  
  9.   if( (b-Math.floor(b)) == 0 )  
  10.   {  
  11.     // return base^exponent  
  12.     p = a;  
  13.     forint i = 1; i < b; i++ )p *= a;  
  14.     return p;  
  15.   }  
  16.   x = (gt1)?  
  17.       (a /(a-1)): // base is greater than 1  
  18.       (a-1); // base is 1 or less  
  19.   sumX = (gt1)?  
  20.       (1/x): // base is greater than 1  
  21.       x; // base is 1 or less  
  22.   forint i = 2; i < iter; i++ )  
  23.   {  
  24.     // find x^iteration  
  25.     p = x;  
  26.     forint j = 1; j < i; j++)p *= x;  
  27.     double xTemp = (gt1)?  
  28.         (1/(i*p)): // base is greater than 1  
  29.         (p/i); // base is 1 or less  
  30.     sumX = (gt1)?  
  31.         (sumX+xTemp): // base is greater than 1  
  32.         (sumX+(xTemp*oc)); // base is 1 or less  
  33.     oc *= -1// change math symbol (+,-)  
  34.   }  
  35.   x2 = b * sumX;  
  36.   sumY = 1+x2; // our estimate  
  37.   forint i = 2; i <= iter; i++ )  
  38.   {  
  39.     // find x2^iteration  
  40.     p = x2;  
  41.     forint j = 1; j < i; j++)p *= x2;  
  42.     // multiply iterations (ex: 3 iterations = 3*2*1)  
  43.     int yTemp = 2;  
  44.     forint j = i; j > 2; j-- )yTemp *= j;  
  45.     // add to estimate (ex: 3rd iteration => (x2^3)/(3*2*1) )  
  46.     sumY += p/yTemp;  
  47.   }  
  48.   return sumY; // return our estimate  

几乎在所有情况下,由泰勒级数逼近返回的估计比衰变算法方法更为精确,而 Math.sqrt() 也可以产生更好的结果。泰勒级数方法所使用的计算周期较少, 但在值趋于 0 时会不稳定。Math.sqrt() 结果可以提供良好的逼近,通常到第三位数字。有关使用多个任意分配的正实型变量的方法的比较,请参见表 1。我们可以看到,对于实际应用, Math.sqrt() 或泰勒级数方法对于是大多数值都比较优良。

表 1:衰变算法和平方根方法的比较

底数,指数 实际结果 泰勒级数逼近 Math.sqrt() 估计值 衰变算法估计值

8.0, 0.75 4.75682846 4.7423353221144557 4.75682846 4.751286816
8.0, 0.667 4.002774 3.9919355054959973 3.994588452 3.994453662
16.0, 8.0 4294967296 4294967296 4294967296 4294752931
32.0, 5.0 33554432 33554432 33554432 33553177.47
11.0, 3.0 1331 1331 1331 1330.967224
10.0, 10.0 10000000000 10000000000 10000000000 9999699608
77.0, 3.0 456533 456533 456533 456527.6254
5.0, 15.0 30517578125 30517578125 30517578125 30516279235
15.0, 9.0 38443359375 38443359375 38443359375 38440083836
3.0, 21.0 10460353203 10460353203 10460353203 10459907131
5.0, 0.05 1.083798387 1.0837883791740017 1.083457755 1.08205432
7.0, 0.37 2.054406 2.0529191207908064 2.050973357 2.051043668
1.5, 0.789 1.377006542 1.377006541546755 1.376496289 1.376798426
1.5, 3.789 4.647397078 4.647381683179335 4.64015972 4.644836289
0.06282, 0.325784 0.405919146 0.41327102396968585 0 0.06282
0.7261, 0.20574 0.936270645 0.9362706445348806 0.93646901 0.7261
0.903272, 0.48593 0.951767579 0.951767579257642 0.951823588 0.903272
0.821111, 0.767392 0.85963221 0.8596322100794738 0.859766145 0.821111
0.24352, .004322 0.99391353 0.9939136545397182 0.994497397 0.24352
0.000125, .99556 0.000130089 627097113.1963351 0 0.000125

编程注意事项和结论

本文已经解决了在 Java ME 中开发 Math.pow() 方法的三种途径。虽然朴素的“强力”几何衰变试探性方法比较不错,而且对于小问题可能很有用处,但是 Math.sqrt() 改写对于大多数范围的应用可能要好一些。***方法可能是泰勒级数逼近。显然,这三个示例均未包括完成该任务的特有方法(如二分法及参考资料中介绍的其他方法),并且我们希望其他方法可以提供占用较少资源的更为高效的技巧。***需要注意的一点是:如果要求您开发此类方法,务必考虑其应用,所需的参数以及预期的结果和精度。

 

【编辑推荐】

  1. 碰撞检测算法在Java ME中的实现
  2. Java ME多模搜索技术初探
  3. 浅谈Java SE、Java EE、Java ME三者的区别
  4. 如何解决Java ME设备碎片问题
  5. Java ME平台中的URLEncoder实现类
责任编辑:佚名 来源: IT168
相关推荐

2009-06-17 11:27:00

setClip方法J2ME

2016-09-18 16:58:09

JavaProperties

2010-09-30 12:53:00

J2MECSS

2010-10-09 10:30:03

JS event

2011-08-29 15:10:19

JAVALua 脚本

2021-04-13 09:20:21

JavaUnsafejava8

2009-06-29 17:57:30

ApplicationJSP

2019-11-07 23:48:12

shell脚本getopts

2022-09-14 08:00:00

区块链加密货币挖矿

2015-06-08 09:05:10

Java原型模式

2023-06-28 08:34:02

Bind()函数JavaScript

2009-06-08 20:07:44

Eclipse中使用p

2010-09-29 16:20:06

J2MEWeb服务API

2010-09-29 10:41:18

J2MEJVM

2012-05-10 10:53:10

Linuxhistory

2009-12-02 16:04:44

PHP fsockop

2009-03-04 13:10:41

SQL语句INSERTDELETE

2016-12-27 10:19:42

JavaScriptindexOf

2011-03-28 09:35:06

iBaitsSqlMapClien

2012-05-09 10:52:37

Linux监控命令
点赞
收藏

51CTO技术栈公众号