Skip to content

Commit 107e49e

Browse files
committed
2026-01-30
1 parent b7dc80f commit 107e49e

File tree

74 files changed

+9747
-78
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+9747
-78
lines changed

404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<link rel="preload" as="image" href="/img/hand-slugs.jpg" fetchpriority="high">
1919
<link rel="preload" as="image" href="/img/hand-gears.jpg" fetchpriority="high">
2020
<link rel="preload" as="image" href="/img/hand-cube2.jpg" fetchpriority="high"><link rel="stylesheet" href="/assets/css/styles.44ad2588.css">
21-
<script src="/assets/js/runtime~main.29e9c570.js" defer="defer"></script>
21+
<script src="/assets/js/runtime~main.99aa8c34.js" defer="defer"></script>
2222
<script src="/assets/js/main.d70092fb.js" defer="defer"></script>
2323
</head>
2424
<body class="navigation-with-keyboard">

about/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<link rel="preload" as="image" href="/img/hand-slugs.jpg" fetchpriority="high">
1919
<link rel="preload" as="image" href="/img/hand-gears.jpg" fetchpriority="high">
2020
<link rel="preload" as="image" href="/img/hand-cube2.jpg" fetchpriority="high"><link rel="stylesheet" href="/assets/css/styles.44ad2588.css">
21-
<script src="/assets/js/runtime~main.29e9c570.js" defer="defer"></script>
21+
<script src="/assets/js/runtime~main.99aa8c34.js" defer="defer"></script>
2222
<script src="/assets/js/main.d70092fb.js" defer="defer"></script>
2323
</head>
2424
<body class="navigation-with-keyboard">

assets/js/19c2369c.584ec82b.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/6e23be43.52305d8d.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/7682cc97.92f525a3.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/runtime~main.99aa8c34.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

compute-engine/api/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<link rel="preload" as="image" href="/img/hand-slugs.jpg" fetchpriority="high">
1919
<link rel="preload" as="image" href="/img/hand-gears.jpg" fetchpriority="high">
2020
<link rel="preload" as="image" href="/img/hand-cube2.jpg" fetchpriority="high"><link rel="stylesheet" href="/assets/css/styles.44ad2588.css">
21-
<script src="/assets/js/runtime~main.29e9c570.js" defer="defer"></script>
21+
<script src="/assets/js/runtime~main.99aa8c34.js" defer="defer"></script>
2222
<script src="/assets/js/main.d70092fb.js" defer="defer"></script>
2323
</head>
2424
<body class="navigation-with-keyboard">

compute-engine/changelog/index.html

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<link rel="preload" as="image" href="/img/hand-slugs.jpg" fetchpriority="high">
1919
<link rel="preload" as="image" href="/img/hand-gears.jpg" fetchpriority="high">
2020
<link rel="preload" as="image" href="/img/hand-cube2.jpg" fetchpriority="high"><link rel="stylesheet" href="/assets/css/styles.44ad2588.css">
21-
<script src="/assets/js/runtime~main.29e9c570.js" defer="defer"></script>
21+
<script src="/assets/js/runtime~main.99aa8c34.js" defer="defer"></script>
2222
<script src="/assets/js/main.d70092fb.js" defer="defer"></script>
2323
</head>
2424
<body class="navigation-with-keyboard">
@@ -332,6 +332,21 @@
332332
</li>
333333
</ul><h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="bug-fixes">Bug Fixes<a href="#bug-fixes" class="hash-link" aria-label="Direct link to Bug Fixes" title="Direct link to Bug Fixes" translate="no"></a></h3><ul>
334334
<li class="">
335+
<p><strong>(<a href="https://github.com/cortex-js/compute-engine/issues/176" target="_blank" rel="noopener noreferrer" class="">#176</a>) Power
336+
Combination Simplification</strong>: Fixed simplification failing to combine powers
337+
with the same base when one factor has an implicit exponent or when there are
338+
3+ operands. Previously, expressions like <code>2 * 2^x</code>, <code>e * e^x * e^{-x}</code>, and
339+
<code>x^2 * x</code> would not simplify. Now correctly simplifies to <code>2^(x+1)</code>, <code>e</code>, and
340+
<code>x^3</code> respectively. The fix includes:</p>
341+
<ul>
342+
<li class="">Extended power combination rules to support numeric literal bases</li>
343+
<li class="">Added functional rule to handle n-ary Multiply expressions (3+ operands)</li>
344+
<li class="">Adjusted simplification cost threshold from 1.2 to 1.3 to accept
345+
mathematically valid simplifications where exponents become slightly more
346+
complex (e.g., <code>2 * 2^x → 2^(x+1)</code>)</li>
347+
</ul>
348+
</li>
349+
<li class="">
335350
<p><strong>Matrix Operations Type Validation</strong>: Fixed matrix operations (<code>Shape</code>, <code>Rank</code>,
336351
<code>Flatten</code>, <code>Transpose</code>, <code>Determinant</code>, <code>Inverse</code>, <code>Trace</code>, etc.) returning
337352
incorrect results or failing with type errors. The root cause was a type

compute-engine/demo/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<link rel="preload" as="image" href="/img/hand-slugs.jpg" fetchpriority="high">
1919
<link rel="preload" as="image" href="/img/hand-gears.jpg" fetchpriority="high">
2020
<link rel="preload" as="image" href="/img/hand-cube2.jpg" fetchpriority="high"><link rel="stylesheet" href="/assets/css/styles.44ad2588.css">
21-
<script src="/assets/js/runtime~main.29e9c570.js" defer="defer"></script>
21+
<script src="/assets/js/runtime~main.99aa8c34.js" defer="defer"></script>
2222
<script src="/assets/js/main.d70092fb.js" defer="defer"></script>
2323
</head>
2424
<body class="navigation-with-keyboard">
@@ -160,7 +160,7 @@
160160

161161

162162
</style>
163-
<div class="flex flex-col items-center"><div class="example-cells"><div class="example-cell active">$$\frac{165}{315}$$</div><div class="example-cell">$$e^{i\pi}$$</div><div class="example-cell">$$\sqrt{6\sum_{n=1}^{\infty} \frac{1}{n^2}}$$</div><div class="example-cell">$$2\prod_{n=1}^{\infty} \frac{4n^2}{4n^2-1}$$</div><div class="example-cell">$$\sum_{n=1}^{b} n^2$$</div><div class="example-cell">$$\prod_{n=1}^{b} n$$</div><div class="example-cell">$$\mathrm{Expand}((a+b)^5)$$</div><div class="example-cell">Rational</div><div class="example-cell">$$\cos\left(\frac{\pi}{6}\right)$$</div><div class="example-cell">$$\sin(30\degree)$$</div><div class="example-cell">Piecewise</div><div class="example-cell">$$\lfloor \pi \rfloor = \lceil \exponentialE \rceil$$</div><div class="example-cell">Errors</div></div><code-playground></code-playground></div></div><footer class="theme-doc-footer docusaurus-mt-lg"><div class="theme-doc-footer-edit-meta-row row"><div class="col"></div><div class="col lastUpdated_VsjB"></div></div></footer></article><nav class="docusaurus-mt-lg pagination-nav" aria-label="Docs pages"><a class="pagination-nav__link pagination-nav__link--prev" href="/compute-engine/"><div class="pagination-nav__sublabel">Previous</div><div class="pagination-nav__label">Introduction</div></a><a class="pagination-nav__link pagination-nav__link--next" href="/compute-engine/changelog/"><div class="pagination-nav__sublabel">Next</div><div class="pagination-nav__label">Changelog</div></a></nav></div></div></div></div></main></div></div></div><div class="shared-footer"><footer class="theme-layout-footer footer footer--dark"><div class="container container-fluid"><div class="row footer__links"><div class="theme-layout-footer-column col footer__col"><div class="footer__title">SDKs</div><ul class="footer__items clean-list"><li class="footer__item"><a class="footer__link-item" href="/mathfield/">Mathfield</a></li><li class="footer__item"><a class="footer__link-item" href="/compute-engine/">Compute Engine</a></li><li class="footer__item"><a class="footer__link-item" href="/math-json/">MathJSON</a></li></ul></div><div class="theme-layout-footer-column col footer__col"><div class="footer__title">Community</div><ul class="footer__items clean-list"><li class="footer__item"><a href="https://github.com/cortex-js" target="_blank" rel="noopener noreferrer" class="footer__link-item">
163+
<div class="flex flex-col items-center"><div class="example-cells"><div class="example-cell active">$$\frac{165}{315}$$</div><div class="example-cell">$$e^{i\pi}$$</div><div class="example-cell">$$\sqrt{6\sum_{n=1}^{\infty} \frac{1}{n^2}}$$</div><div class="example-cell">$$2\prod_{n=1}^{\infty} \frac{4n^2}{4n^2-1}$$</div><div class="example-cell">$$\sum_{n=1}^{b} n^2$$</div><div class="example-cell">$$\prod_{n=1}^{b} n$$</div><div class="example-cell">$$\mathrm{Expand}((a+b)^5)$$</div><div class="example-cell">Rational</div><div class="example-cell">$$\cos\left(\frac{\pi}{6}\right)$$</div><div class="example-cell">$$\sin(30\degree)$$</div><div class="example-cell">$$(1,2,3)+(3,5,6)$$</div><div class="example-cell">Matrix Multiply</div><div class="example-cell">Piecewise</div><div class="example-cell">$$\lfloor \pi \rfloor = \lceil \exponentialE \rceil$$</div><div class="example-cell">Errors</div></div><code-playground></code-playground></div></div><footer class="theme-doc-footer docusaurus-mt-lg"><div class="theme-doc-footer-edit-meta-row row"><div class="col"></div><div class="col lastUpdated_VsjB"></div></div></footer></article><nav class="docusaurus-mt-lg pagination-nav" aria-label="Docs pages"><a class="pagination-nav__link pagination-nav__link--prev" href="/compute-engine/"><div class="pagination-nav__sublabel">Previous</div><div class="pagination-nav__label">Introduction</div></a><a class="pagination-nav__link pagination-nav__link--next" href="/compute-engine/changelog/"><div class="pagination-nav__sublabel">Next</div><div class="pagination-nav__label">Changelog</div></a></nav></div></div></div></div></main></div></div></div><div class="shared-footer"><footer class="theme-layout-footer footer footer--dark"><div class="container container-fluid"><div class="row footer__links"><div class="theme-layout-footer-column col footer__col"><div class="footer__title">SDKs</div><ul class="footer__items clean-list"><li class="footer__item"><a class="footer__link-item" href="/mathfield/">Mathfield</a></li><li class="footer__item"><a class="footer__link-item" href="/compute-engine/">Compute Engine</a></li><li class="footer__item"><a class="footer__link-item" href="/math-json/">MathJSON</a></li></ul></div><div class="theme-layout-footer-column col footer__col"><div class="footer__title">Community</div><ul class="footer__items clean-list"><li class="footer__item"><a href="https://github.com/cortex-js" target="_blank" rel="noopener noreferrer" class="footer__link-item">
164164
<svg class="icon-one-rem"><use role="none" xlink:href="/icons.svg#github"></use></svg>
165165
GitHub
166166
<svg width="13.5" height="13.5" aria-hidden="true" viewBox="0 0 24 24" class="iconExternalLink_nPIU"><path fill="currentColor" d="M21 13v10h-21v-19h12v2h-10v15h17v-8h2zm3-12h-10.988l4.035 4-6.977 7.07 2.828 2.828 6.977-7.07 4.125 4.172v-11z"></path></svg>

compute-engine/guides/assumptions/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<link rel="preload" as="image" href="/img/hand-slugs.jpg" fetchpriority="high">
1919
<link rel="preload" as="image" href="/img/hand-gears.jpg" fetchpriority="high">
2020
<link rel="preload" as="image" href="/img/hand-cube2.jpg" fetchpriority="high"><link rel="stylesheet" href="/assets/css/styles.44ad2588.css">
21-
<script src="/assets/js/runtime~main.29e9c570.js" defer="defer"></script>
21+
<script src="/assets/js/runtime~main.99aa8c34.js" defer="defer"></script>
2222
<script src="/assets/js/main.d70092fb.js" defer="defer"></script>
2323
</head>
2424
<body class="navigation-with-keyboard">

0 commit comments

Comments
 (0)