<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Furkan</title>
    <description>The latest articles on DEV Community by Furkan (@furkannarkn).</description>
    <link>https://dev.to/furkannarkn</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3985930%2F02766d0d-2483-4525-963e-2726948f4dd7.png</url>
      <title>DEV Community: Furkan</title>
      <link>https://dev.to/furkannarkn</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/furkannarkn"/>
    <language>en</language>
    <item>
      <title>Building a Scientific Computing Platform (Quantum, ML, Math) in Pure Python Without NumPy</title>
      <dc:creator>Furkan</dc:creator>
      <pubDate>Mon, 15 Jun 2026 16:54:45 +0000</pubDate>
      <link>https://dev.to/furkannarkn/i-spent-months-building-a-scientific-computing-platform-quantum-ml-math-in-100-pure-python-19of</link>
      <guid>https://dev.to/furkannarkn/i-spent-months-building-a-scientific-computing-platform-quantum-ml-math-in-100-pure-python-19of</guid>
      <description>&lt;p&gt;Hi everyone,&lt;/p&gt;

&lt;p&gt;We rely so heavily on tools like NumPy, SciPy, and PyTorch that most of us treat them like black magic. I wanted to break that illusion. My goal was to&lt;br&gt;
see if I could build a professional-grade computational science platform using nothing but the Python Standard Library.&lt;/p&gt;

&lt;p&gt;It turned into an obsessive deep dive into algorithmic optimization, memory management, and raw math.&lt;/p&gt;

&lt;p&gt;I've just released v0.6.0, and here is what it currently handles natively in Pure Python:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Linear Algebra &amp;amp; Calculus: I had to scrap naive 0(N!) determinants for an O(N3) Partial Pivoting LU decomposition to stop my machine from melting. Also&lt;br&gt;
includes an Adaptive Newton Method.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Quantum Mechanics: A complete state-vector simulator. Instead of calculating matrices thousands of times for measurements, I implemented an 0(1)&lt;br&gt;
probabilistic sampling algorithm with true state collapse.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Machine Learning from Scratch: A fully functioning Neural Network (MLP) trained by a custom-built Adam optimizer that features full momentum state&lt;br&gt;
persistence.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Signal Processing: An O(N log N) zero-padded 1D/2D FFT and Convolution Theorem implementation.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Statistics: An autonomous hypothesis engine that takes generated ideas and tests them against datasets using ANOVA and Welch's t-tests.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The Ecosystem Upgrade:&lt;br&gt;
To prove it wasn't just a toy, I made sure the engineering standards were flawless:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;350+ unit tests hitting 95% coverage.&lt;/li&gt;
&lt;li&gt;Strict typing enforced by mypy and ruff in the CI pipeline.
Interactive Jupyter Notebook tutorials and a fully automated MkDocs website.&lt;/li&gt;
&lt;li&gt;A Streamlit dashboard and a Rich-powered CLI.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you are a student who wants to read the actual math behind an FFT or a Quantum Gate without getting lost in C/C++ source code, or if you're just&lt;br&gt;
curious about how far vanilla Python can be pushed, I'd love for you to explore it. Feedback, code reviews, and stars are highly appreciated!&lt;/p&gt;

&lt;p&gt;GitHub Repo: &lt;a href="https://github.com/Furox88/cognitive-discovery-system" rel="noopener noreferrer"&gt;https://github.com/Furox88/cognitive-discovery-system&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Documentation &amp;amp; Tutorials: &lt;a href="https://furox88.github.io/cognitive-discovery-system/" rel="noopener noreferrer"&gt;https://furox88.github.io/cognitive-discovery-system/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;PyPI Installation: pip install cognitive-discovery-platform&lt;/p&gt;

</description>
      <category>algorithms</category>
      <category>python</category>
      <category>science</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
