Franklin MNfmn.hashnode.dev·Feb 18, 2025📝 Ultimate Mathematics Mastery RoadmapPhoto by Antoine Dautry from Unsplash Phase 1: Core Mathematical Foundations 1. Arithmetic & Number Theory What to Learn? Basic Operations: Addition, Subtraction, Multiplication, Division (with shortcuts) Divisibility Rules: Rules for 2, 3, 4, 5, ...Mathematics
khushaalankhushaalan.hashnode.dev·Feb 12, 2025Reverse IntegerGiven a signed 32-bit integer x, return x with its digits reversed. If reversing x causes the value to go outside the signed 32-bit integer range [-2<sup>31</sup>, 2<sup>31</sup> - 1], then return 0. Assume the environment does not allow you to store...Math
khushaalankhushaalan.hashnode.dev·Jan 22, 2025How to find `n-th` root of a given 'x' algorithmicallydef solve(x, n): if x == 0: return 0 lower = 0 upper = max(1, x) mid = (lower + upper) / 2 while ((mid-lower) >= 0.001): if (mid ** n > x): upper = mid else: lower = mid mid...Math
ManoelforfreeCodeCampfreecodecamp.org·Jan 12, 2025120 Free Online Math Courses from the World’s Top UniversitiesIn this article, we’ve compiled over 220 online courses offered by the 60 best universities in the world for studying math. We did so by combining popular university rankings to identify the best institutions, and then using the Class Central databas...Advanced Mathematics
FlareXesflarexes.com·Dec 21, 2024Modular Arithmetic in Cryptography💡 Proceed with caution! Few people believe I’m not good at mathematics. Of course, I disagree. I’m really good at explaining and understanding math concepts; there's a reason why my first article was about math and crypto. Either way, I’m no expert ...124 readsCryptography
Jainil Prajapatidoreturn.hashnode.dev·Nov 21, 2024DeepSeek R1-Lite-Preview: Revolutionizing AI Reasoning with Transparency and ScalabilityDeepSeek, a Chinese AI venture by High-Flyer Capital Management, has released its newest reasoning-focused large language model (LLM), R1-Lite-Preview, available via its proprietary chatbot platform, DeepSeek Chat. This latest iteration is already ga...ai-benchmarks
DbVisualizerthetable.hashnode.dev·Nov 18, 2024Practical MySQL Math Functions for Database WorkFor developers handling calculations directly within databases, MySQL’s math functions are invaluable. From simple rounding to complex trigonometric calculations, these functions support both straightforward and advanced analytic tasks. Here’s a look...Math
Rajesh Sahurajesh-4.hashnode.dev·Nov 17, 2024The Start: 5 Days, 10+ Math ProblemsOver the last 5 days, I’ve focused on solving math-based coding problems. These problems not only improved my logical thinking but also helped me strengthen the basics of problem-solving. Here are a few things I’ve learned: Breaking complex problems...Python
Anix Lynchgozeroshot.dev·Nov 4, 2024Learn Math Symbols Through Inspring Philosophy and Data Science (For math hater to love math)∇ (Nabla) – Direction Root Meaning: Guidance or movement. Philosophy: The quest for optimal growth and progress. Data Science: Represents the gradient, guiding the model in finding the path of steepest descent in optimization. θ (Theta) –...Math
Anix Lynchgozeroshot.dev·Nov 4, 202482 Math Notation Symbols for Data Scientists∇ (Nabla) – Directional Detective: Gradient or vector operator for finding the slope of a function. θ (Theta) – Parameter Setter: Represents model parameters or angles. α (Alpha) – Tuning Fork: Learning rate or significance level. β (Beta) – Multi...MathForDataScience