Classic floating-point quirk:
0.1 + 0.2 == 0.3 # false
Julia: use ≈ instead.
0.1 + 0.2 ≈ 0.3 # true
(Try \approx tab)
#julia #computing
Posts by Biplab Bose
Is it open to International students who are currently studying at their own countries?
Assume gains are private, but losses are shared. What happens if this rule governs a system of interacting open subsystems exchanging resources with the environment? The system will have a sharp, switch-like state transition. Check our new pre-print arxiv.org/abs/2512.22839
#statmech #ComplexSystem
An increasing number of UG students appear to be struggling with mathematics. What we thought was a local, transient issue may actually be part of a wider, possibly global, problem.
maa.org/math-values/...
#math #engineering #edu
In Julia, function composition isn’t just notation… it's executable math
> f(x) = x^2 + 1
> g = f ∘ sin
> g(pi/2) # gives 2
#julialang #joyofcomputing #computing
A university is closing its Department of Statistics due to financial constraints. Really? In this age, where mathematics, computing, and AI/ML dominate every industry, closing a Statistics Department doesn’t seem like a good business decision. #justsaying nebraskaexaminer.com/2025/12/05/t...
To what extent can the foundations of thermodynamics & stat physics be built purely from combinatorics and probability—without relying on the usual concepts like work, heat, and energy? Are there any textbooks that develop the theory primarily from a probabilistic perspective only?
Don't be clueless! Better, understand how Julia thinks:
@code_lowered 2 + 3
@code_lowered 2 + 3.0
@code_lowered 2.0 + 3.0
Code better. Code smarter.
#JuliaLang #computing #sysbio #systemsbiology #qbio
High-throughput omics studies > lots of data transformations > 5,000 correlations to be tested through experiments.
Toy models with few parameters > the design principles behind the complexity of Life.
True Systems Biology: fewer spreadsheets, more ‘Aha!’ moments. #sysbio #mathbio #physicsoflife
Why burden memory? Take a sneaky peek and get the job done!
A = rand(5,5)
W = @view A[2:4,2:4] # take a peek, no copying
@views W[1:2, 1:2] .= 0 # sneakily mutate
A # check the mutation
#julialang #computing
Explaining non-equilibrium systems to students: ‘Imagine a system that refuses to relax.' Students: ‘Like us?’
#justforfun #teaching #physicsoflife #physicsoflivingmatter
Schrödinger’s cat called. It is live and it wants a break. It didn’t sign up to explain superposition to every social media users. Enough!
Using ± in Julia code? Yes, because real models don’t come with exact parameters.
using DifferentialEquations, MonteCarloMeasurements
k = 1.0 ± 0.1
u0 = 1.0 ± 0
prob = ODEProblem((u,p,t)->-k*u, u0, (0,5))
sol = solve(prob)
mean(sol[end])
#JuliaLang #computing
Temperature is not just a thermometer thing. Physicists, chemists, biologists, economists, and data analysts all use it differently. Maybe one day we'll find a single rule that links them all. Until then, temp keeps its cool by being complicated.
Another review article worth bookmarking: Signed Networks: theory, methods, and applications."
arxiv.org/abs/2511.17247
Perfect for my Systems Biology course.
#sysbio #complexsystem #graph #network #compbio #mathbio
Many bugs don't scream. They whisper in wrong units. Using units in your code can save you. Again, Julia helps in that.
using Unitful
D = 0.01u"mm^2/s" # 0.01 mm^2 s^-1
t = 100u"s" # 100 s
√(2D*t) # 1.4142 mm
#julialang #computing #sysbio #systemsbiology
Identical genome. Same environment. Totally different life choices. Turns out even cells have an identity crisis. #sysbio #physicsoflife
I get confused when philosophers and scientists debate “reality.”
If I slap someone, they feel pain and may hit back. That’s real.
So clearly, I’m missing something much deeper. #justsaying
In biology, we’re still busy naming T cells and debating EMT or autophagy — a bit like arguing over bird names while the real wonder lies in understanding how they fly.
#complexsystem #PhysicsOfLife #sysbio
Dear developmental biologists, Julia comes with a Zygote that auto-differentiates. 😀
using Zygote
f(x) = x^2 + 3x + sin(x)
f'(2.0) # returns 6.58385
#Julialang #mathbio #qBio #compbio #sysbio #systemsbiology
At the beginning of this year, Active Matter researchers published a 'review of reviews' — yes, a meta-meta study. When your field grows so fast, you need a map of the maps. Worth bookmarking.
link.springer.com/article/10.1... #activematter #physicsoflife #physicalbiology #complexity
Is it weird that I prefer old biology papers—the ones with two figures, zero rainbow plots, and actual ideas? Or am I just allergic to 100-page supplements that explain nothing?
Every time I get overwhelmed, I remember- a lot of statistical physics is basically fancy bookkeeping for balls in boxes.
When science books cost a fortune, only publishers win. Open sharing—GitHub, arXiv—helps every learner. Isn’t it time to free ourselves from the 'medieval' prestige of being ‘published by a reputed publisher’? #scicom #edu #doingsciencd
Wet lab? Dry lab? I prefer the Symbolic lab.
Math-Bio isn't just HPC runs— derivations & proofs matter too. As always, Julia helps.
using Symbolics
@variables x y a b c d m n
f = [a/(1+y^n)-b*x, c/(1+x^m)-d*y]
J = Symbolics.jacobian(f,[x,y])
#Julialang #mathbio #computaionalbiology #sysbio
Calling any large, well-organised dataset "Systems Biology" is a bit like calling a census "social theory." Essential, powerful, and impressive — yes. But the explanations, through generalised theories/models, still have to be earned. #systemsbiology #sysbio #physicsoflife
@ricardsole.bsky.social Is not 'thinking' (that we do) also just obeying 'physics'- possibly a physics we don't yet know or understand? #justcurious
PhD defense (Dramatized based on real events):
You (examiner): That statistics & conclusion are wrong. Needs correction for repeated tests.
Candidate: 🤔 (flustered).
Supervisor: No issues! 😡 This work is already published.
How often do you face such a situation?
#worldofbiologists #bio
My physicist friends love universality — until the system starts voting, reproducing, or trading stocks 🤪
#complexsystem #physicsoflife #physicsoflivingmatter #systemsbiology
A = [1, 2, 3]
B = [3, 4, 5]
x = 9
x ∈ A ∪ B # -> false
Writing code using symbols in Julia feels like scribbling in a math notebook — except this one actually runs. It takes some time to get habituated, but then you get hooked.
#julialang #computing