- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
F# PowerPack's BigRational
类型可以转换为 double
来计算值。但是,当分子和分母达到一定大小后,返回的值为double.NaN
。
由于 BigRational
将分子和分母都作为 System.Numerics.BigInteger
进行跟踪,因此您可以使用对数属性来解决问题:
a / b = e^(ln(a) - ln(b))
有了我们的 BigInteger
分子和分母,我们可以调用
BigInteger num = myBigRational.Numerator;
BigInteger den = myBigRational.Denominator;
double value = Math.Exp(BigInteger.Log(num) - BigInteger.Log(den));
由于 double
类型的结构对于接近 0 的值的限制,我宁愿使用 decimal
。我只是还没弄清楚怎么做。
只是为了好玩,我正在编写一个使用 Taylor series 计算圆周率的程序arctan
的。
arctan(x) = x - x^3/3 + x^5/5 - x^7/7 + x^9/9 - ...
如果我们在 1 处评估系列,我们得到
arctan(1) = 1 - 1/3 + 1/5 - 1/7 + 1/9 - ...
因为 arctan(1) = pi/4
,我们可以将我们的级数乘以 4 来计算 pi。
我的程序的目标是计算收敛到 pi 精确到 n 位
需要多少级数项。例如,为了使序列精确到一位数 (3),它需要前三项:
1 term: 4 * (1) = 4
2 terms: 4 * (1 - 1/3) = 2.666666666666667
3 terms: 4 * (1 - 1/3 + 1/5) = 3.466666666666667
要精确到 2 位数字 (3.1),它需要前 19 个术语。精确到 3 位数字 (3.14) 要求前 119 项,依此类推。
我最初使用 C# 的 decimal
类型编写我的程序:
const int MaxDigits = 20;
private static void RunDecimalCalculation()
{
decimal pi = 0m; // our current approximation of pi
decimal denominator = 1m;
decimal addSubtract = 1m;
ulong terms = 0;
for (int digits = 0; digits < MaxDigits; digits++)
{
decimal piToDigits, upperBound;
GetBounds(digits, out piToDigits, out upperBound);
while (pi >= upperBound | pi < piToDigits)
{
pi += addSubtract * 4m / denominator;
denominator += 2m;
addSubtract *= -1m;
terms++;
}
PrintUpdate(terms, digits, pi);
}
}
/// <summary>
/// Returns the convergence bounds for <paramref name="digits"/> digits of pi.
/// </summary>
/// <param name="digits">Number of accurate digits of pi.</param>
/// <param name="piToDigits">Pi to the first <paramref name="digits"/> digits of pi.</param>
/// <param name="upperBound">same as <paramref name="piToDigits"/>, but with the last digit + 1</param>
/// <example>
/// <code>GetBounds(1)</code>:
/// piToDigits = 3
/// upperBound = 4
///
/// <code>GetBounds(2)</code>:
/// piToDigits = 3.1
/// upperbound = 3.2
/// </example>
private static void GetBounds(int digits, out decimal piToDigits, out decimal upperBound)
{
int pow = (int)Math.Pow(10, digits);
piToDigits = (decimal)Math.Floor(Math.PI * pow) / pow;
upperBound = piToDigits + 1m / pow;
}
不过,我意识到,由于每次迭代中的舍入误差,在足够多的项之后,所需的项数可能会减少。因此,我开始研究 F# PowerPack 的 BigRational
并重写了代码:
// very minor optimization by caching common values
static readonly BigRational Minus1 = BigRational.FromInt(-1);
static readonly BigRational One = BigRational.FromInt(1);
static readonly BigRational Two = BigRational.FromInt(2);
static readonly BigRational Four = BigRational.FromInt(4);
private static void RunBigRationalCalculation()
{
BigRational pi = BigRational.Zero;
ulong terms = 0;
var series = TaylorSeries().GetEnumerator();
for (int digits = 0; digits < MaxDigits; digits++)
{
BigRational piToDigits, upperBound;
GetBounds(digits, out piToDigits, out upperBound);
while (pi >= upperBound | pi < piToDigits)
{
series.MoveNext();
pi += series.Current;
terms++;
}
double piDouble = Math.Exp(BigInteger.Log(pi.Numerator) - BigInteger.Log(pi.Denominator));
PrintUpdate(terms, digits, (decimal)piDouble);
}
}
// code adapted from http://tomasp.net/blog/powerpack-numeric.aspx
private static IEnumerable<BigRational> TaylorSeries()
{
BigRational n = One;
BigRational q = One;
while (true)
{
yield return q * Four / n;
n += Two;
q *= Minus1;
}
}
不出所料,这个版本的运行速度令人难以置信很慢,这很好。 (十进制版本用了34秒到9个准确位;BigRational版本用了17秒到5个准确位,跑了大概半小时还没到6个准确位)。不过,让我感到沮丧的是 double
不如 decimal
准确,因此虽然项数总是正确的,但从
double piDouble = Math.Exp(BigInteger.Log(pi.Numerator) - BigInteger.Log(pi.Denominator));
不准确。有没有办法通过数学魔法或一些具有 Math.Exp()
和 BigInteger.Log()
decimal
版本的库来解决这个问题?
最佳答案
How do I evaluate the division of BigIntegers as decimal rather than double in C#?
您有 BigIntegers N 和 D,并希望将精确值 N/D 近似为小数。 WOLOG 假设两者都是正的。
这很简单。先解决这个问题:
二、解决这个问题:
三、解决本题:
将 I0、I1 和 I2 转换为无符号整数,然后再转换为有符号整数。
现在你已经拥有了调用所需的一切
https://msdn.microsoft.com/en-us/library/bb1c1a6x(v=vs.110).aspx
嘿,你手头有一个小数点。
就是说:您一开始就不需要这样做。您正在 BigRationals 中进行数学计算;为什么你会想把它们去掉成小数或 double ?只需将 pi 近似为大有理数中您想要的任何水平,并将缓慢转换的系列与该水平进行比较。
仅供引用,这个系列收敛非常缓慢。一旦您凭经验确定了它的收敛速度,您能否提供关于收敛速度的任何界限的证明?
关于c# - 如何在 C# 中将 BigIntegers 的除法计算为十进制而不是 double ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41927615/
我正在尝试编写一个简单的除法函数,但出现错误 PS C:\Users\john> Function Div($x, $y) { $x / $y } PS C:\Users\john> Div (1,
试图找出这个伪代码。以下假设...... 我只能使用无符号和有符号整数(或长整数)。 除法返回一个没有余数的实数。 MOD 返回一个实数。 不处理分数和小数。 INT I = 41828; INT C
如果我有以下表格并且我在关系代数中执行 R1/R2,结果会是一个具有 A 值 1 和 3 的表格吗?我有点困惑,因为我知道 3 将是一个结果,因为它包含 5 和 1,但结果 1 除了匹配的值之外还有
//Declare and intialize variables - programmer to provide initial values Scanner in = new Scanne
除法运算符在 scala BigDecimal 上有什么用? val d1 = BigDecimal(2) val d2 = BigDecimal(3) val div = d1 / d2 //thr
这个问题在这里已经有了答案: How can I divide properly using BigDecimal (2 个答案) 关闭 6 年前。 我在这里做错了什么?很确定这是正确的,我能够打印
好的 - 已经为此苦苦挣扎了一段时间。我刚刚开始学习 Python,所以非常新。 我有一个元组列表,需要按每个元组中值的比率进行排序。 输入: L = [(1,3), (1,7), (4,8)] 返回
我有一个奇怪的问题,我收到计算机生成的方程式(作为字符串),其中偶尔会出现零或一和零的乘法/除法。这些等式将以字符串形式呈现给用户。 我知道我可以通过实现一种解析器来删除等式中的这些冗余部分,但我很好
我有两个变量:count,这是我过滤的对象的数量,以及每页的常量值。我想将计数除以 per_page 并获得整数值,但无论我尝试什么 - 我都得到 0 或 0.0: >>> count = frien
我尝试在 Go 中获得 2.4/0.8 == 3 w:=float64(2.4) fmt.Println(math.Floor(w/0.8),math.Floor(2.4/0.8) ) 它给了我“2
程序清单: # val_caculate.py a = 10 # a是整数 print('10/3 = ',10/3) print('9/3 = ',9/3) pri
我是 java 新手,所以我需要你对我正在进行的项目的帮助!我定义了一些计数器,这些是我将使用的: int[] acceptCounters = {}; int[] acceptFailCounter
我正在除 2 个 BigInteger 值 N = 9440056782685472448790983739834832785827768777249804302814308027414135716
我的应用程序中有使用 array.reduce 将数字相乘的代码。它看起来像这样: // Private function to multiply field values together func
我目前创建了一个名为 Array Math 的类,它将乘法加载到 10x10 数组中,如代码下显示的图像所示,但是我想要做的是在乘法后将每个位置除以 2。换句话说,(行 * 列)/2 目前我只是将这些
我正在使用代表货币金额的 BigDecimal 值。我需要将此金额分成 6 个费率,前 5 个费率四舍五入为 5,其余的为第 6 个费率。 BigDecimal numberOfRates = new
这个问题必须使用递归来解决。 我尝试使用 “else” 之后的代码来使用 int temp 计算商,该 temp 计算可以除以多少次 (temp = dividend - divisor)。 int
我知道这一定是有史以来最简单的事情,但我是这里的初学者。为什么我运行时会出现语法错误 document.write(10 / 2 + ""); //Divide 10 by 5 to get 2
这应该是一个非常基本的东西,但不知何故我没有看到问题。 #include template inline void i2c(const int & ind, int & i, int &j) {
我正在做课本中的一些家庭作业,并且有一些关于某些算术运算的浮点舍入/精度的问题。 如果我像这样从 int 中转换 double : int x = random(); double dx = (dou
我是一名优秀的程序员,十分优秀!