Sam Blake
Sam Blake
I suggest we remove definite integral capability. Albert has implemented Newton-Leibniz without checking for continuity Int[u_, {x_Symbol, a_, b_}] := With[{result = Int[u, x]}, Limit[result, x -> b] - Limit[result,...
Added a (hopefully temporary) patch for definite integration: Int::definite = "Rubi does not check that the domain of integration is continuous."; Int[u_, {x_Symbol, a_, b_}] := With[{result = Int[u, x]},...
This is a good integral for the rational part of Bronstein's algorithm. -- Rubi does not have a rule for this type of integral. -- Mathematica does not implement Bronstein's...
Hi Michael, It's great to hear that someone is taking up the challenge of compiling Rubi's rules into a decision tree! Regarding \[Star] - I believe it was Albert's way...
Here's an interesting use of GPT4o parsing a Rubi rule into Maple syntax. (I do not have Maple so I cannot test the resulting code... ) *Prompt: * *Can you...
It looks dubious to me, but I don't have Maple any more. The online documentation says about the op() function .... *If the first argument to the op function is...
Has anyone here looked at this? https://github.com/axkr/symja_android_library/wiki/Porting-Rubi-Integration-rules-to-Symja (It was just pointed out on the Maxima discussion list. Some of Mathematica is implemented.. This page gets you a web interface https://matheclipse.org/...
Wow, I love the web interface! I was surprised to see this time-out: Integrate[1/(x^5+1), x] Error: π³πππΎπππ πΎππΌπΎπΎπ½πΎπ½. π’πΊπ πΌππ πΊππππ πΊπ»ππππΎπ½! On Mon, Jun 24, 2024 at 7:49β―AM Axel Kramer...
Suggestion for speeding up (Mathematica's version) of Rubi by maybe 30-40%.. It seemed to me that pattern matching should be way faster when there are better "anchors" in the match....
Albert probably would probably have hated the inelegant hackery, but perhaps another way to do that would be have only one public rule for Int [expression_? ExpressionQ, var_SymbolQ] := IntAux...