One day, one decomposition
A038528: If n has decimal expansion abc...d, with k digits, let f(n) be obtained by deleting all k's from abc...d, closing up and deleting initial 0's; sequence gives n such that f(f(f(...(n)))) = 0 or empty
3D graph, threejs - webGL ➡️ https://decompwlj.com/3Dgraph/A038528.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A038528.html
#decompwlj #maths #mathematics #sequence #OEIS #javascript #php #3D #numbers #decimal #expansion #digits #graph #threejs #webGL
#webgl #threejs #graph #digits #expansion #decimal #numbers #3d #php #javascript #oeis #sequence #mathematics #maths #decompwlj
Project of the day (day 6) 2023, Monday, August 28th
#MetricSystem : https://github.com/seanpm2001/Metric-System
This is more of a #documentation repository, but it is one I am quite happy with. The idea behind this was a set of improvements to the #Metric #System, mostly by adding more #SI #units, including both #Decimal and #Binary. It expands from the unit #Kilometer to include units such as Megameter, Gigameter, Terameter, etc. and Mebimeter, Gibimeter, Tibimeter, etc.
#metricsystem #documentation #metric #system #SI #units #decimal #binary #kilometer
The Denga, a coin from Russia, issued since at least the mid 14th century. In 1535, #Russia was the first country to go #decimal with the Denga worth 1/100 Rubles. I found an argument that they continued to also use non-decimal until after 1800 but I can't find references for that? Any help? Meanwhile, here is a Denga from 1749, issued under Elizaveta Petrovna. More at: https://coinofnote.com/russia-1-denga-1749/ #SaturdayNightCoinShow
#russia #decimal #saturdaynightcoinshow
:python: Hey! There is an awesome `decimal` package in Python standard library.
💡 Imagine, you can have an alternative third-party Decimal implementation in Python that would be 5x faster. It will be especially faster to parse from JSON or a string and faster to serialize.
❓ The only catch is you can have only essential features in this implementation. What those features would be?
#python #programming #fintech #web3 #decimal
Hackaday Links: April 30, 2023 https://hackaday.com/2023/04/30/hackaday-links-april-30-2023/ #HackadayColumns #Hackadaylinks #hackadaylinks #retrocomputer #troyounce #starship #wirenuts #decimal #vintage #binary #SpaceX #WAGO #faa #UAP #UFO #VCF
#HackadayColumns #Hackadaylinks #retrocomputer #troyounce #starship #wirenuts #decimal #vintage #binary #spacex #wago #faa #uap #ufo #vcf
Hackaday Links: April 30, 2023 - Cloudy with a chance of concrete? The “success” of last week’s brief but eventful ... - https://hackaday.com/2023/04/30/hackaday-links-april-30-2023/ #hackadaycolumns #hackadaylinks #retrocomputer #troyounce #starship #wirenuts #decimal #vintage #binary #spacex #wago #faa #uap #ufo #vcf
#vcf #ufo #uap #faa #wago #spacex #binary #vintage #decimal #wirenuts #starship #troyounce #retrocomputer #hackadaylinks #hackadaycolumns
One day, one decomposition
A010784: Numbers with distinct decimal digits
3D graph #threejs #webGL ➡️ https://decompwlj.com/3Dgraph/A010784.html
2D graph, first 500 terms ➡️ https://decompwlj.com/2Dgraph500terms/A010784.html
#decompwlj #math #mathematics #sequence #OEIS #javascript #php #3D #numbers #distinct #decimal #digits #graph
#graph #digits #decimal #distinct #numbers #3d #php #javascript #oeis #sequence #mathematics #math #decompwlj #webgl #threejs
Ada: convert float to decimal https://stackoverflow.com/questions/75749137/ada-convert-float-to-decimal #ada #programming #floating-point #decimal #ada
#ada #programming #floating #decimal
Ada: fixed decimal place https://stackoverflow.com/questions/75741711/ada-fixed-decimal-place #ada #programming #decimal #ada
It amuses me that people spend time practicing to recite the transcendental number #pi #π to hundreds of #decimal #base10 digits, or asking computers to compute billions of decimal digits, but #NASA only works with 16 significant figures. #PiDay [jpl. nasa. gov/edu/news/2016/3/16/how-many-decimals-of-pi-do-we-really-need] https://www.jpl.nasa.gov/edu/news/2016/3/16/how-many-decimals-of-pi-do-we-really-need/
#pi #π #decimal #base10 #nasa #piday
Triplet d'un quatuor
Quartet d'un trio
3 + 3, 6
3 + 4, 7
4 + 4, 8
3 x 3, 9
3 x 4, 12 | 10 | C
4 x 4, 16 | 14 | 10
4 exp 3, 64 | 54 | 40
3 exp 4, 81 | 69 | 51
#decimal #duodecimal #hexadecimal #acgtu #adn #arn
#arn #adn #acgtu #hexadecimal #duodecimal #decimal
It is Julian Date 2460000. You're welcome. #JulianDate #JD #NiceRoundNumber #Decimal
#juliandate #jd #niceroundnumber #decimal
numération babylonienne explication
les babyloniens ont utilisé une grande variété de systèmes de #numeration : #sexagesimal strict avec les clous et chevrons, décimal mélangeant du sexagésimal ou #decimal . pour une meilleure compréhension, on classe ici sous le terme de "babyloniens" les #babyloniens , les #akkadiens et les #sumériens .
https://www.semconstellation.fr/numeration-babylonienne-explication/
#numeration #sexagesimal #decimal #babyloniens #akkadiens #sumeriens #calcul #chiffrement
Funny story. Yesterday I went into the farm shop in Dawlish, just before closing. Walked round, looking for eggs and had to ask because they'd been moved into the back room. 'How many do you want?' asked the teenager serving. 'Oh, I'll take a dozen,' I said. She replied . . . .
.
.
.
.
'Is that six or twelve?'
I'm going to write to Jacob Rees-Mogg about this.
The 10 Kinds of Programmers That Use Calcutron-33 - It is interesting how, if you observe long enough, things tend to be cyclical. Bac... - https://hackaday.com/2022/12/07/the-10-kinds-of-programmers-that-use-calcutron-33/ #computerhacks #decimal #risc #cpu
#cpu #risc #decimal #computerhacks
@coolo nor in any language using Floating Point arithmetic! It's a common gotcha.
It *can* be true in Python - use exact decimals, or compare floats the right way (for "closeness").
```
from decimal import Decimal
Decimal(0.1) + Decimal(0.2) == Decimal(0.3) # True
```
https://docs.python.org/3/library/decimal.html
Or use `isclose` from `math` or `cmath`, as of 3.5:
```
from math import isclose
isclose(0.1 + 0.2, 0.3) # True
```
#float #decimal #python #floatingpoint #gotcha
The simple #math behind #decimal #binary #conversion #algorithms
----
.... Because of that fact, you’re never going to have 0.1+0.2 == 0.3. ...
#informatique
https://indepth.dev/posts/1019/the-simple-math-behind-decimal-binary-conversion-algorithms
#math #decimal #binary #conversion #algorithms #informatique
How to control the number of decimals places for display purpose only using Image function in Ada? https://stackoverflow.com/questions/66765905/how-to-control-the-number-of-decimals-places-for-display-purpose-only-using-imag #ada #programming #numbers #decimal #display #ada
#ada #programming #numbers #decimal #display