<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel rdf:about="https://community.wolfram.com">
    <title>Community RSS Feed</title>
    <link>https://community.wolfram.com</link>
    <description>RSS Feed for Wolfram Community showing any discussions tagged with Discrete Mathematics with no replies sorted by active.</description>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3740868" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3716598" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3696660" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3634252" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3580921" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3567195" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3514752" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3514743" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3481786" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3402381" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3379973" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3311103" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3237111" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3165799" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2981522" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2840816" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2734106" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2707515" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2652917" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2419451" />
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3740868">
    <title>Drunken walks in general dimensions and curved spaces</title>
    <link>https://community.wolfram.com/groups/-/m/t/3740868</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/32e11114-d41a-43eb-b18e-db0907d77579</description>
    <dc:creator>James Butterfield</dc:creator>
    <dc:date>2026-06-29T14:31:23Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3716598">
    <title>A short arithmetic program producing four CODATA-level constants</title>
    <link>https://community.wolfram.com/groups/-/m/t/3716598</link>
    <description>I would like to share a compact deterministic arithmetic program that produces four numerical values lying within the CODATA 2022 one-standard-uncertainty windows for:&#xD;
&#xD;
- the inverse fine-structure constant&#xD;
- the proton/electron mass ratio&#xD;
- the muon/electron mass ratio&#xD;
- the tau/electron mass ratio&#xD;
&#xD;
The code was motivated by a broader physical framework, but the point of this post is not to argue for that framework.&#xD;
&#xD;
The narrower question is this:&#xD;
&#xD;
Can this compact computational object be explained as ordinary numerical fitting, and if so, where is the fitted information stored?&#xD;
&#xD;
The program contains:&#xD;
&#xD;
- no empirical target constants as inputs&#xD;
- no decimal fit coefficients&#xD;
- no continuous optimization loop&#xD;
- no output-specific adjustable parameters&#xD;
&#xD;
In addition, the three mass-ratio outputs share the same denominator ladder.&#xD;
&#xD;
Wolfram Language code:&#xD;
&#xD;
```wolfram&#xD;
&#xD;
        u = 1;&#xD;
        r = 3;&#xD;
        A = r*(r - u);&#xD;
        B = 2;&#xD;
        n = A + B - u;&#xD;
        rel = A + B + r;&#xD;
        ph = n + B;&#xD;
        h = (rel + u) + n;&#xD;
        nVal = r + rel + ph + h;&#xD;
        cVal = 2*nVal;&#xD;
        atten = 1 - A/n^2;&#xD;
        Phi = nVal*r + rel + r/cVal + (rel - ph)/cVal^2 + (18/(n*Pi))*atten/cVal^3 + (4*Pi)*atten/cVal^4;&#xD;
        d1 = r + ph + u;&#xD;
        d2 = h*(nVal - (r + u));&#xD;
        d3 = d1*d2;&#xD;
        d4 = d2*(nVal - (r + u))*A*(rel - r);&#xD;
        Psi1 = cVal*(h + r) - (ph + r) + (rel - ph)/d1 - u/d2 + (rel - ph)/d3 - u/d4;&#xD;
        Psi2 = h*rel - r + (rel - u)/d1 - u/d2 + (r + u)/d3 + (h - r - u)/d4;&#xD;
        Psi3 = nVal*(cVal - u) - ph + (rel - ph)/d1 - (rel - ph)/d2 + (r + u)/d3 - (r*h)/d4;&#xD;
    &#xD;
    NumberForm[N[{Phi, Psi1, Psi2, Psi3}, 15], 15]&#xD;
&#xD;
&#xD;
Output:&#xD;
&#xD;
    {137.035999165800, 1836.15267343627, 206.768283284455, 3477.15145895483}&#xD;
&#xD;
For comparison, the CODATA 2022 reference values are approximately:&#xD;
&#xD;
    alpha^-1          = 137.035999177(21)&#xD;
    &#xD;
    proton/electron   = 1836.152673426(32)&#xD;
    &#xD;
    muon/electron     = 206.7682827(46)&#xD;
    &#xD;
    tau/electron      = 3477.23(23)&#xD;
&#xD;
&#xD;
&#xD;
All four outputs lie within the corresponding one-standard-uncertainty windows.&#xD;
&#xD;
Under a conservative unit-range normalization, the four simultaneous window hits roughly correspond to ~66 bits of target-window information.&#xD;
&#xD;
So my question is simple:&#xD;
&#xD;
**If this is ordinary numerical fitting, what is the information channel?**&#xD;
&#xD;
For completeness, I include a short note containing the description-length analysis:&#xD;
&#xD;
[https://doi.org/10.5281/zenodo.20158423][1]&#xD;
&#xD;
&#xD;
  [1]: https://doi.org/10.5281/zenodo.20158423</description>
    <dc:creator>Tetsuya Momose</dc:creator>
    <dc:date>2026-05-15T11:09:21Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3696660">
    <title>Information symmetry in complementary lattice dynamics</title>
    <link>https://community.wolfram.com/groups/-/m/t/3696660</link>
    <description>A chromatic cellular automaton on {0,1}³ generates a cruciform pattern from a single seed (established in Post 3). At every timestep, the null-space complement of the pattern &amp;#x2014; obtained by mapping each state s → 7−s &amp;#x2014; is computed and compared to the positive space using five independent complexity measures: Shannon entropy, joint entropy of adjacent pairs, spatial mutual information, 2×2 block entropy, and Kolmogorov complexity approximation via compression.&#xD;
Result: the first four measures show exact equality C(P,t) = C(N,t) at every step. The fifth (Kolmogorov complexity approximated via compression) shows near-equality with fractional difference under 3%, consistent with encoder-dependent variation in a computable upper bound rather than genuine structural asymmetry. The structural complexity of the complement matches the complexity of the pattern &amp;#x2014; not approximately, but identically &amp;#x2014; across all information-theoretic measures tested.&#xD;
&#xD;
The complement operator also reveals a vertex absent from the automaton&amp;#039;s lifecycle. The lifecycle visits Red, Green, Blue, Yellow, and Magenta. Cyan (0,1,1) never appears. In the complement, Red maps to Cyan. Since Red is the most frequently renewed state (Dead → Idea), Cyan becomes the dominant active state in the null space. The vertex absent from the dynamics is the most prominent vertex of the shadow.&#xD;
&#xD;
Four questions for the community:&#xD;
&#xD;
1. Continuous extension. The information symmetry C(P,t) = C(N,t) holds by construction for any bijective complement on a finite vertex set. Does it extend to continuous state spaces on [0,1]³?&#xD;
&#xD;
2. Cyan dominance. The complement reveals Cyan (0,1,1) as the dominant active state of the null space. If Cyan were introduced into the lifecycle, would the complement become impoverished at a corresponding vertex?&#xD;
&#xD;
3. Simultaneous threshold crossing. The null-space complement achieves identical structural complexity without its own dynamics. In any system where the positive space crosses a self-referential complexity threshold, does the complement cross simultaneously?&#xD;
&#xD;
4. Universality challenge. Five complexity measures all show C(P,t) = C(N,t). Is there ANY computable complexity measure for which the equality fails?&#xD;
&#xD;
Notebook Attached.&#xD;
&#xD;
https://www.wolframcloud.com/obj/f17551bc-aec2-415b-9323-ad8865b5d46d</description>
    <dc:creator>Dustin Sprenger</dc:creator>
    <dc:date>2026-04-20T02:45:27Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3634252">
    <title>Extended Rule-110 family via ANF over GF(2): prior art and validation of a factor onto Rule 110</title>
    <link>https://community.wolfram.com/groups/-/m/t/3634252</link>
    <description>Hi everyone,&#xD;
&#xD;
My name is Tigran. I am working with the Wolfram Language on cellular automata and would like to ask whether a particular larger-neighborhood extension of Rule 110, defined in algebraic normal form (ANF) over GF(2), is already known, and how best to validate it rigorously.&#xD;
&#xD;
⸻&#xD;
&#xD;
Rule family (ANF over GF(2))&#xD;
&#xD;
For each neighborhood size m &amp;gt;= 3, I define a Boolean local rule&#xD;
&#xD;
f_m(x1, …, xm) =&#xD;
x_{m-1} + x_m + x_{m-1}x_m + (x1x2*…*xm)  (mod 2)&#xD;
&#xD;
where:&#xD;
	•	addition is XOR (mod 2),&#xD;
	•	multiplication is AND.&#xD;
&#xD;
For m = 3, this becomes&#xD;
&#xD;
f_3(x1, x2, x3) =&#xD;
x2 + x3 + x2x3 + x1x2*x3  (mod 2)&#xD;
&#xD;
which corresponds exactly to Wolfram Rule 110.&#xD;
&#xD;
Converting the ANF to a lookup table and then to a Wolfram rule index gives, for example:&#xD;
&#xD;
m = 3  -&amp;gt;  110&#xD;
m = 4  -&amp;gt;  28398&#xD;
m = 6  -&amp;gt;  7993589098607472366&#xD;
&#xD;
⸻&#xD;
&#xD;
Evolution setting&#xD;
&#xD;
I evolve a one-sided (causal) wedge with boundary zeros and a single-seed initial condition:&#xD;
&#xD;
a(0,0) = 1&#xD;
a(0,t &amp;gt; 0) = 0&#xD;
&#xD;
Out-of-range indices are treated as zero.&#xD;
&#xD;
The update rule is:&#xD;
&#xD;
a(n+1, t) =&#xD;
f_m( a(n, t-m+1), …, a(n, t) )&#xD;
&#xD;
This is a triangular / wedge evolution rather than a standard bi-infinite CA.&#xD;
&#xD;
⸻&#xD;
&#xD;
Observation&#xD;
&#xD;
Empirically, for certain neighborhood sizes &amp;#x2014; most notably&#xD;
&#xD;
m = 2^j + 2&#xD;
&#xD;
the resulting spacetime diagrams show persistent activity and localized structures strongly reminiscent of Rule 110, including glider-like behavior. This does not appear to be a trivial left-right symmetry or a simple shift.&#xD;
&#xD;
⸻&#xD;
&#xD;
Questions&#xD;
	1.	Prior art&#xD;
Is this specific ANF extension&#xD;
&#xD;
x_{m-1} + x_m + x_{m-1}x_m + (x1x2*…*xm)&#xD;
&#xD;
already known or studied (in Wolfram’s work, the CA literature, or related discussions of Rule-110 generalizations)?&#xD;
	2.	Validation / factorization&#xD;
What are the standard techniques to show that a larger-neighborhood Boolean CA factors onto Rule 110, for example via:&#xD;
&#xD;
	•	a sliding block code,&#xD;
	•	coarse-graining or renormalization,&#xD;
	•	substitution or rescaling,&#xD;
	•	or a proof of a semiconjugacy to Rule 110?&#xD;
&#xD;
Does the use of a wedge evolution change what would count as a valid factor or simulation?&#xD;
	3.	Practical workflow&#xD;
If the right goal is to exhibit an explicit map pi such that&#xD;
&#xD;
pi( evolution under f_m )&#xD;
= evolution under Rule 110 applied to pi(state),&#xD;
&#xD;
what would be a reasonable computational strategy (for example, searching small block maps) to test this in Wolfram Language?&#xD;
&#xD;
If useful, I can share a minimal notebook or GitHub repository&#xD;
&#xD;
Thank you very much for your time and for any pointers or references.&#xD;
&#xD;
Tigran &#xD;
&#xD;
    ClearAll[NumberCellularAutomatonFastC];&#xD;
    &#xD;
    NumberCellularAutomatonFastC[nMin_Integer, nMax_Integer, kMin_Integer,&#xD;
    kMax_Integer, ruleIndex_Integer, M_Integer /; M &amp;gt; 0] :=&#xD;
    Module[{bits, tMin = nMin, tMax = nMax, nMaxIter = kMax, outAll,&#xD;
    slice, cf},&#xD;
    bits = Reverse@IntegerDigits[ruleIndex, 2, 2^M];&#xD;
    cf = Compile[{{b, _Integer, 1}, {tmax, _Integer}, {nmax, _Integer}, {m, _Integer}},&#xD;
    Module[{prev, curr, out, n, t, j, idx, pattern, val},&#xD;
    prev = ConstantArray[0, tmax + 1];&#xD;
    prev[[1]] = 1;&#xD;
    out = ConstantArray[0, {nmax + 1, tmax + 1}];&#xD;
    out[[1]] = prev;&#xD;
    For[n = 1, n &amp;lt;= nmax, n++,&#xD;
    curr = ConstantArray[0, tmax + 1];&#xD;
    For[t = 0, t &amp;lt;= Min[tmax, (m - 1) n], t++,&#xD;
    pattern = 0;&#xD;
    (* pattern built from prev[t-(m-1)]..prev[t] *)&#xD;
    For[j = 1, j &amp;lt;= m, j++,&#xD;
    idx = t - m + j;&#xD;
    val = If[idx &amp;gt;= 0, prev[[idx + 1]], 0];&#xD;
    pattern = 2 pattern + val;&#xD;
    ];&#xD;
    curr[[t + 1]] = b[[pattern + 1]];&#xD;
    ];&#xD;
    prev = curr;&#xD;
    out[[n + 1]] = prev;&#xD;
    ];&#xD;
    out&#xD;
    ],&#xD;
    CompilationTarget -&amp;gt; &amp;#034;C&amp;#034;, RuntimeOptions -&amp;gt; &amp;#034;Speed&amp;#034;&#xD;
    ];&#xD;
    outAll = cf[bits, tMax, nMaxIter, M];&#xD;
    slice = outAll[[kMin + 1 ;; kMax + 1, tMin + 1 ;; tMax + 1]];&#xD;
    Transpose[slice]&#xD;
    ]&#xD;
    &#xD;
    XX[n_] :=&#xD;
    Symbol[&amp;#034;x&amp;#034; &amp;lt;&amp;gt; ToString[n]] + Symbol[&amp;#034;x&amp;#034; &amp;lt;&amp;gt; ToString[n - 1]] +&#xD;
    Symbol[&amp;#034;x&amp;#034; &amp;lt;&amp;gt; ToString[n - 1]]*Symbol[&amp;#034;x&amp;#034; &amp;lt;&amp;gt; ToString[n]] +&#xD;
    Product[Symbol[&amp;#034;x&amp;#034; &amp;lt;&amp;gt; ToString[j]], {j, 1, n}];&#xD;
    &#xD;
    Table[&#xD;
    {anfToRule[XX[(2^j + 2)], (2^j + 2)],&#xD;
    XX[(2^j + 2)],&#xD;
    ArrayPlot[&#xD;
    NumberCellularAutomatonFastC[&#xD;
    0, 10*(2^j + 2)^2 + 100,&#xD;
    0, 10*(2^j + 2)^2 + 100,&#xD;
    anfToRule[XX[(2^j + 2)], (2^j + 2)], (2^j + 2)],&#xD;
    ColorRules -&amp;gt; {0 -&amp;gt; Black, 1 -&amp;gt; LightBlue}]&#xD;
    },&#xD;
    {j, 0, 3}&#xD;
    ]</description>
    <dc:creator>Tigran Nersissian</dc:creator>
    <dc:date>2026-02-04T13:27:33Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3580921">
    <title>[Polihacks] The sons of Bill Gates: lognormal simulation cellular model</title>
    <link>https://community.wolfram.com/groups/-/m/t/3580921</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/c6388a9d-cdfc-4d41-9d79-caccd5ba5c68</description>
    <dc:creator>Adael Reyes</dc:creator>
    <dc:date>2025-11-23T22:34:43Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3567195">
    <title>Verifying origin/meaning of rule 54 formula on MathWorld</title>
    <link>https://community.wolfram.com/groups/-/m/t/3567195</link>
    <description>Hi&#xD;
&#xD;
I&amp;#039;m an independent researcher exploring a potential link between the shortcut Collatz function (`T(n)`) and ECA Rule 54 (single cell evolution). I need help verifying a formula from the MathWorld page for Rule 54.&#xD;
&#xD;
The page presents this piecewise formula:&#xD;
$$&#xD;
a(n) =&#xD;
\begin{cases}&#xD;
\frac{1}{15}(4^{n+2} - 1) &amp;amp; \text{if } n \text{ is even} &#xD;
\newline&#xD;
\frac{7}{15}(4^{n+1} - 1) &amp;amp; \text{if } n \text{ is odd}&#xD;
\end{cases}&#xD;
\quad (n \ge 1)&#xD;
$$&#xD;
&#xD;
[https://mathworld.wolfram.com/Rule54.html][1]&#xD;
My work proves that `T(n) = wH(a(n)) - 1` (where `wH` is binary Hamming weight), assuming `a(n)` represents the normalized decimal value (odd-part) of the n&amp;#039;th row pattern.&#xD;
&#xD;
Could someone please help clarify:&#xD;
&#xD;
 1. Is the interpretation of `a(n)` (as normalized value) correct for Rule 54 (single cell) ?&#xD;
 2. What is the source or derivation for this specific `a(n)` formula?&#xD;
 3. Is the formula original to MathWorld?&#xD;
 4. If a primary source isn&amp;#039;t readily available, is citing the MathWorld page directly considered acceptable practice for this formula in a formal paper?&#xD;
&#xD;
Verifying this is crucial for my paper connecting Collatz to Rule 54.&#xD;
While Dr. Weisstein might be the most direct source, perhaps he isn&amp;#039;t very active here. Any insights, references, or verification from the community would be greatly appreciated.&#xD;
&#xD;
Thanks so much!  &#xD;
Rudi B. Stranden&#xD;
&#xD;
&#xD;
  [1]: https://mathworld.wolfram.com/Rule54.html</description>
    <dc:creator>Rudi Bjørnsen Stranden</dc:creator>
    <dc:date>2025-10-29T17:38:56Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3514752">
    <title>The Dædælus efficiency model: a formal comparison of bandwidth- and transaction-multiplexing</title>
    <link>https://community.wolfram.com/groups/-/m/t/3514752</link>
    <description>A computational essay that serves as &amp;#039;Code as Proof,&amp;#039; formally modeling the foundational flaws of classical networking and demonstrating the superiority of the Dædælus transactional fabric. The notebook begins by deconstructing the shared-media contention of the 1976 Metcalfe-Boggs model and the latency-bound throughput of TCP (Mathis equation), proving how traditional bandwidth-multiplexing over unreliable links inevitably leads to efficiency collapse, the loss of epistemic certainty, and unbounded tail latency. It then contrasts this with the Dædælus architecture, simulating how a reliable N2N Lattice that uses Transaction-Multiplexing and the Reversible Snake protocol eliminates contention, is immune to packet loss, and provides the deterministic performance necessary for a Truncated Tail Latency.&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/5940dabf-c983-4d15-aac3-59b831fde427</description>
    <dc:creator>Dean Gladish</dc:creator>
    <dc:date>2025-07-18T09:33:17Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3514743">
    <title>The metcalfe-boggs model: a formal analysis of statistical arbitration and efficiency</title>
    <link>https://community.wolfram.com/groups/-/m/t/3514743</link>
    <description>A formal, executable model of the original 1976 Metcalfe-Boggs protocol for distributed packet switching. This notebook serves as &amp;#039;Code as Proof,&amp;#039; deconstructing the dynamics of statistical arbitration on a shared, passive Ether. It mathematically models the interaction between the Transmission Interval, where a single station has acquired the Ether, and the Contention Interval, where multiple queued stations (Q) vie for access. By visualizing the best metrics of Acquisition Probability (A), Wait Time (W), and overall Efficiency (E), the model demonstrates the fundamental trade-offs and performance degradation inherent in a system reliant on simple packet collision and retransmission--setting the stage for the superior, deterministic model of Open Atomic Ethernet.&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/e10b3b57-f841-4b2c-8999-734874b0d2f4</description>
    <dc:creator>Dean Gladish</dc:creator>
    <dc:date>2025-07-18T09:22:46Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3481786">
    <title>Dirac’s Hidden Formula? The Unexpected Power of Logs and Exponents in Number Representation</title>
    <link>https://community.wolfram.com/groups/-/m/t/3481786</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/5c5cc7f5-cfb7-4fa1-ba79-bafb50a181d0</description>
    <dc:creator>Jefferson Conza</dc:creator>
    <dc:date>2025-06-18T22:48:55Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3402381">
    <title>Exploring discrete integration with the help of ChatGPT</title>
    <link>https://community.wolfram.com/groups/-/m/t/3402381</link>
    <description>I&amp;#039;m new to Mathematica, and going around with some Help from ChatGPT&#xD;
&amp;amp;[Wolfram Notebook][1]&#xD;
Day 2:&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
Today:&#xD;
&amp;amp;[Wolfram Notebook][3]&#xD;
Thank You&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/c8c55c46-e6ad-4ac5-8917-6b87229a61c2&#xD;
  [2]: https://www.wolframcloud.com/obj/06607baa-d76d-4006-a745-197ae5a33968&#xD;
  [3]: https://www.wolframcloud.com/obj/27473a5a-f3eb-4435-89a5-2126640b7cfb</description>
    <dc:creator>David Beteta</dc:creator>
    <dc:date>2025-02-28T14:21:33Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3379973">
    <title>[WELP24] On functional iteration and roots</title>
    <link>https://community.wolfram.com/groups/-/m/t/3379973</link>
    <description>![On functional iteration and roots][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=proj-6-cover.jpeg&amp;amp;userId=911151&#xD;
  [2]: https://www.wolframcloud.com/obj/930a433a-2ab4-478c-8542-f153add19e0f</description>
    <dc:creator>Wolfram Education Programs</dc:creator>
    <dc:date>2025-02-04T15:30:58Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3311103">
    <title>On determinants of some tridiagonal matrices connected with Fibonacci numbers</title>
    <link>https://community.wolfram.com/groups/-/m/t/3311103</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/ddceb7e2-1ad8-4a94-ab6b-ec11ed500a95</description>
    <dc:creator>Jefferson Conza</dc:creator>
    <dc:date>2024-10-29T14:59:14Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3237111">
    <title>An alternative to Wolfram&amp;#039;s NearestNeighborGraph function</title>
    <link>https://community.wolfram.com/groups/-/m/t/3237111</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/9943b9c6-7bf8-4641-9399-ec43d18bc138</description>
    <dc:creator>Richard Frost</dc:creator>
    <dc:date>2024-07-28T21:20:53Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3165799">
    <title>Carrying the Mandelbrotian torch: using the human eye to test for probabilistic dependence</title>
    <link>https://community.wolfram.com/groups/-/m/t/3165799</link>
    <description>Here is a quiz Mandelbrot gives.&#xD;
Of the difference graphs below, one is Brownian motion, one fractional Brownian motion, one a Levy process, two are real financial data, and three are multifractal forgeries. Can you tell which is which?&#xD;
![Pick the Fake Mandelbrot Finance][1]    &#xD;
[Answers here][2]        &#xD;
&#xD;
I am fascinated by Mandelbrot&amp;#039;s visual approach to science. In his book **Misbehavior of Markets** he comments,&#xD;
&#xD;
*Pictures are undervalued in science. A modern diagram or chart can be as precise as desired, and is no more costly than the computer that draws it. The picture can now aid, not mislead  the scientist. It permits instant comparison, instant comprehension.*&#xD;
&#xD;
There was a famous scientific debate including the now late Daniel Kahneman over whether the &amp;#034;Hot Hand&amp;#034; effect was real or not. Current consensus is that it is real. I was curious if there was a &amp;#034;Hot Team&amp;#034; effect where teams were more likely to score after scoring. In my experience as a college basketball player and coach, it certainly feels like this exists. And basketball practitioners swear by it: &#xD;
&#xD;
&amp;#034;Basketball is a game of runs!&amp;#034;, they say.&#xD;
&#xD;
I tried to tackle this problem using Mandelbrot&amp;#039;s method, but found (at least on initial testing) that his eye test is not sensitive enough to pick up small changes of 2.5% dependence, which if the hot team effect exists it will be small. Here&amp;#039;s what the Mandelbrot test looks like for 10,000 steps in a random walk with .525 probability dependence, meaning if you get a 1 you have a .525 chance of getting another 1 and same for -1.&#xD;
&#xD;
![Mandelbrot Method][3]&#xD;
&#xD;
I have to generate more samples to really double-check if it can pick up the difference but just from that image I can&amp;#039;t really tell.&#xD;
&#xD;
So I devised a test that counts up the number of streaks of length 2 and plots their frequency. You can divide it up into chunks, to make it easier to see the difference between values. It looks like this:&#xD;
&#xD;
![Dependence Eye Test][4]&#xD;
&#xD;
So here you can actually test yourself using the manipulate to see if you can tell which one is dependent and which one is independent. With 10 chunks of 1000 and a dependence of 0.525, I am about 95% accurate at telling the difference, which is an improvement on the initial Mandelbrot method which I couldn&amp;#039;t really tell at all. With 10 chunks of 500 I performed at about 80%. Once you go lower than that it starts to become impossible because I think the information is not actually there.&#xD;
&#xD;
I encourage you to give it a try.&#xD;
&#xD;
I applied this method to the Portland Trail Blazers NBA Team data and found that it didn&amp;#039;t look dependent, which is evidence for this paper [here][5]. Here&amp;#039;s what it looked like:&#xD;
&#xD;
![Blazers Dependence Test][6]&#xD;
&#xD;
On the left is fake independent data, in the middle is fake dependent data (p = 0.525) and on the right is the real data. &#xD;
&#xD;
I&amp;#039;m working on trying out my eye test on college basketball and tennis data. Overall I think it&amp;#039;s a powerful tool for detecting dependence without knowing the mathematics behind it. It&amp;#039;s science for dummies, like me, who can&amp;#039;t get their head around probability formulas. On a bigger picture it&amp;#039;s a method for finding effective visual models for random events. My plan is to build up a set of tests so that I can quickly understand data with minimal effort. &#xD;
&#xD;
Here&amp;#039;s the notebook to use the manipulates for yourself:&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][7]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ScreenShot2024-03-18at6.30.28PM.png&amp;amp;userId=3163706&#xD;
  [2]: https://users.math.yale.edu/public_html/People/frame/Fractals/RandFrac/Market/Fake/FinanceQuizAns.html&#xD;
  [3]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ScreenShot2024-04-28at12.53.27AM.png&amp;amp;userId=3163706&#xD;
  [4]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ScreenShot2024-04-28at12.03.30AM.png&amp;amp;userId=3163706&#xD;
  [5]: https://arxiv.org/pdf/1903.08716&#xD;
  [6]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ScreenShot2024-04-28at1.24.28AM.png&amp;amp;userId=3163706&#xD;
  [7]: https://www.wolframcloud.com/obj/a0e02235-dc47-4d85-a2cc-a2d4488660a4</description>
    <dc:creator>Willem Nielsen</dc:creator>
    <dc:date>2024-04-28T05:38:04Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2981522">
    <title>Exploration of combinatorics paclet</title>
    <link>https://community.wolfram.com/groups/-/m/t/2981522</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/ddf03176-0030-4109-8fe3-991ef29cd94f</description>
    <dc:creator>Peter Burbery</dc:creator>
    <dc:date>2023-08-02T02:03:55Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2840816">
    <title>Recurring numbers</title>
    <link>https://community.wolfram.com/groups/-/m/t/2840816</link>
    <description>These are the so-called &amp;#034;recurring numbers&amp;#034;, which result from analyzing various equations of that sector of mathematics studied by Srinivasa Ramanujan (Theory of Numbers) and various equations of various sectors of Theoretical Physics (String Theory) and of Theoretical Cosmology (Black Holes and cosmological inflation)&#xD;
&#xD;
![enter image description here][1]&#xD;
&#xD;
&#xD;
 &#xD;
&#xD;
&#xD;
 &#xD;
 &#xD;
&#xD;
 &#xD;
 &#xD;
&#xD;
 &#xD;
&#xD;
&#xD;
![enter image description here][2]&#xD;
&#xD;
&#xD;
![enter image description here][3]&#xD;
&#xD;
&#xD;
![enter image description here][4]&#xD;
&#xD;
&#xD;
![enter image description here][5]&#xD;
&#xD;
&#xD;
![enter image description here][6]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1270Immagine1.png&amp;amp;userId=2483773&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=8411Immagine2.png&amp;amp;userId=2483773&#xD;
  [3]: https://community.wolfram.com//c/portal/getImageAttachment?filename=8715Immagine3.png&amp;amp;userId=2483773&#xD;
  [4]: https://community.wolfram.com//c/portal/getImageAttachment?filename=10443Immagine4.png&amp;amp;userId=2483773&#xD;
  [5]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Immagine5.png&amp;amp;userId=2483773&#xD;
  [6]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Immagine6.png&amp;amp;userId=2483773</description>
    <dc:creator>Michele Nardelli</dc:creator>
    <dc:date>2023-02-28T12:18:16Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2734106">
    <title>Functions in the Guide number digits demonstrated</title>
    <link>https://community.wolfram.com/groups/-/m/t/2734106</link>
    <description>I created a notebook where I decided to learn functions in the guide NumberDigits. I decided to do this for a few reasons.&#xD;
One I am interested in coming up with good names for functions and names like IntegerReverse which  do one thing very well that is very specific are a good way to discuss how to name functions.&#xD;
The other reason is that I can understand these functions and there have been several times including when I was writing this notebook with CountDigits and [another post on Wolfram Community on visualizing Euler&amp;#039;s number][1] I saw someone else make where someone pointed out that you could use RealDigits and I post I made where someone pointed out that I could solve my problem with RealDigits so I decided to work through the guide to not miss any simple digit functions. The function IntegerReverse is discussed in [Chapter 46 of an Elementary Introduction to the Wolfram Language by Stephen Wolfram: Writing Good Code][2]. Stephen Wolfram also writes about the addition of NumberDigit in the [blog post for 12.3][3] as a specific use case of RealDigits. &#xD;
There is one function that I don&amp;#039;t have as strong an intuitive grasp on: MantissaExponent. &#xD;
&amp;amp;[Wolfram Notebook][4]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com/groups/-/m/t/1280901&#xD;
  [2]: https://www.wolfram.com/language/elementary-introduction/2nd-ed/46-writing-good-code.html&#xD;
  [3]: https://writings.stephenwolfram.com/2021/05/launching-version-12-3-of-wolfram-language-mathematica/&#xD;
  [4]: https://www.wolframcloud.com/obj/6033c1a9-d7cf-41c8-9ed2-b4b40a93713e</description>
    <dc:creator>Peter Burbery</dc:creator>
    <dc:date>2022-12-17T02:00:37Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2707515">
    <title>[R&amp;amp;DL] Q&amp;amp;A with Calculus &amp;amp; Algebra Developers</title>
    <link>https://community.wolfram.com/groups/-/m/t/2707515</link>
    <description>Have you heard? We are hosting another [Wolfram R&amp;amp;D Live][1] **Q&amp;amp;A session** on Twitch and YouTube featuring developers from the Calculus and Algebra team! Join us Wednesday November 30th at 11 AM CST.&#xD;
&#xD;
[Devendra Kapadia][2] and [Daniel Lichtblau][3] will be answering your questions. You can help us narrow down topics interesting to you by discussing them on this thread.&#xD;
&#xD;
Here are some examples of topics: &#xD;
&#xD;
 - Continuous Calculus (integration, differential equations...) &#xD;
 - Discrete Calculus (summation, transforms, ...) &#xD;
 - Algebra (polynomials, algebraic equations, ...) &#xD;
 - Special Functions (BesselJ, MeijerG, ...)&#xD;
&#xD;
Find out more about Calculus and Algebra [here][4].&#xD;
&#xD;
Post your questions ahead of time below!&#xD;
&#xD;
&#xD;
  [1]: https://wolfr.am/RDlive&#xD;
  [2]: https://community.wolfram.com/web/dkapadia&#xD;
  [3]: https://community.wolfram.com/web/danl&#xD;
  [4]: https://wolfr.am/calculus</description>
    <dc:creator>Keren Garcia</dc:creator>
    <dc:date>2022-11-21T17:18:00Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2652917">
    <title>Creating questions with Question Generator</title>
    <link>https://community.wolfram.com/groups/-/m/t/2652917</link>
    <description>I created a notebook where I designed questions with Question Generator and Question function. I have several examples of questions including prime numbers, matrices, and dates.&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/67534e73-5e78-4be1-82b0-4402040d3372</description>
    <dc:creator>Peter Burbery</dc:creator>
    <dc:date>2022-10-15T14:59:25Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2419451">
    <title>Slow calculation for PowersRepresentations in ParallelTable</title>
    <link>https://community.wolfram.com/groups/-/m/t/2419451</link>
    <description>Well, I have the following code:&#xD;
&#xD;
    Clear[&amp;#034;Global`*&amp;#034;];&#xD;
    a =;&#xD;
    b =;&#xD;
    \[Alpha] =;&#xD;
    \[Beta] =;&#xD;
    k =;&#xD;
    ParallelTable[&#xD;
      If[TrueQ[Length[&#xD;
          Select[PowersRepresentations[n, a, b], &#xD;
           DuplicateFreeQ[#] &amp;amp;&amp;amp; ! MemberQ[#, 0] &amp;amp;]] &amp;gt;= k], n, &#xD;
       Nothing], {n, \[Alpha], \[Beta]}] //. {} -&amp;gt; Nothing&#xD;
&#xD;
But for a given $a,b, k,\alpha$ and $\beta$ this calculation is really slow. Is there a way to speed things up a bit?&#xD;
&#xD;
I am a student in elementary number theory and looking for power representations of certain numbers. For relatively small sets, it is convenient to use this code but for larger sets, it becomes way too slow.&#xD;
&#xD;
&amp;gt;Thanks for any advice and help.&#xD;
&#xD;
___&#xD;
&#xD;
Example runnable code:&#xD;
&#xD;
    Clear[&amp;#034;Global`*&amp;#034;];&#xD;
    a = 3;&#xD;
    b = 5;&#xD;
    \[Alpha] = 500000;&#xD;
    \[Beta] = 10000000;&#xD;
    k = 6;&#xD;
    ParallelTable[&#xD;
      If[TrueQ[Length[&#xD;
          Select[PowersRepresentations[n, a, b], &#xD;
           DuplicateFreeQ[#] &amp;amp;&amp;amp; ! MemberQ[#, 0] &amp;amp;]] &amp;gt;= k], n, &#xD;
       Nothing], {n, \[Alpha], \[Beta]}] //. {} -&amp;gt; Nothing</description>
    <dc:creator>Jan Eerland</dc:creator>
    <dc:date>2021-12-06T10:34:40Z</dc:date>
  </item>
</rdf:RDF>

