实次幂的迭代运算

发布于 2024-12-20 21:30:39 字数 428 浏览 1 评论 0原文

我找到了许多关于如何计算区间幂的定义,其中幂是整数,但我想找到一个更通用的计算幂的公式。

换句话说,我想实现类似下面的“pow”方法:

class Interval {
    public final double min;
    public final double max;

    public Interval pow(Interval i) {
        return new Interval(..., ...);
    }
}

在区间算术中,标准的四个运算符相对简单(阅读:维基百科上可用),超越函数并不难,整数幂区间的幂并不难...但是区间的幂幂让我陷入了困境。

我还没有找到任何任何语言的开源库来实现这个通用的幂函数。

如果您能提供完整的答案、建议和参考资料,我将不胜感激。

I've found many definitions on how to compute the power of an interval, where the power is an integer, but I'd like to find a formula for computing the power more generally.

In other words, I'd like to implement something like the 'pow' method below:

class Interval {
    public final double min;
    public final double max;

    public Interval pow(Interval i) {
        return new Interval(..., ...);
    }
}

In Interval Arithmetic, the standard four operators are relatively straight-forward (read: available on Wikipedia), transcendental functions are not much harder, and integer powers of intervals are not difficult... But interval powers of intervals are throwing me for a loop.

I haven't been able to find any open-source libraries in any language that implement this generalized power function.

I'd appreciate any complete answers, suggestions, and references.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文