Anasthetic puns make me numb,

But arithmetic puns make me number

๐Ÿ‘︎ 7
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/JamesIgnatius27
๐Ÿ“…︎ Sep 16 2019
๐Ÿšจ︎ report
Math puns are boring

Algebra puns are too linear, arithmetic puns are too basic, trigonometry puns are too graphic, calculus puns are all derivatives. Only the statistic puns are the occasional outlier.

๐Ÿ‘︎ 14
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/bigjamaal
๐Ÿ“…︎ Apr 06 2015
๐Ÿšจ︎ report
implicit casting rules in arithmetical operations

I came across what looks like an inconsistent behavior when using integers of different precisions in operations.

From what I had understood, the integer with the smallest precision is implicitely cast to the same precision as the other for the time of the operation and the result is returned with this new common precision.

But then is "=" an operation ?

I tried this:

uint16_t a,b;
uint32_t p;
a=50000;
b=40000;
p=a*b;

After the operation, p is 2000000000. So, I figured, the equal sign also plays a role, and both source integers are casted to the destination precision before the operation to be able to return a result with the correct precision. A bit dangerous, but convenient.

But then I tried this :

uint32_t a,b;
uint64_t p;
a=1000000000;
b=2000000000;
p=a*b;

But here, after the operation, the result is 1321730048. So, this time, the operation has been made with the operands' precision, returned an overflowed result and then cast the 32 bits result into the 64 bits variable.

This is closer to what I would have expected, but I don't really get why it doesn't act the same way in both situations. Does anybody have a better understanding of the rules? Is it just an undocumented, compiler specific thing?

๐Ÿ‘︎ 3
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Yatopia
๐Ÿ“…︎ Mar 01 2021
๐Ÿšจ︎ report
There already was a different concept called an arithmetical lattice
๐Ÿ‘︎ 51
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/benpaulthurston
๐Ÿ“…︎ Sep 03 2020
๐Ÿšจ︎ report
The Fact of Being Who or What a Person or Thing is of the Fifth Arithmetical Value
๐Ÿ‘︎ 262
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Lady_Belles-lettres
๐Ÿ“…︎ Dec 13 2019
๐Ÿšจ︎ report
Numbers Are Just an Arithmetical Value Made By Mere Mortals
๐Ÿ‘︎ 54k
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/JZAce
๐Ÿ“…︎ Jan 27 2019
๐Ÿšจ︎ report
Does a language's word order affect arithmetical expression?

I'm only personally familiar with SVO languages, so until recently I had never really thought about whether the infix notation I use in English or Spanish is a result of those languages' grammar.

To clarify, what I'm talking about is the placement of operators (+, -, รท, etc) in relation to operands (numbers, variables, etc). In infix notation, this would be exemplified by the expression '2 + 2'. Alternatively, prefix notation, it would be expressed as '+ 2 2', while in postfix it would be '2 2 +'.

As far as I can tell, most languages, regardless of their word order, would use infix notation (at least in written form), but do any languages verbally use a notation corresponding to their word order? For example, would any SOV language say something like "Two two plus" rather than "two plus two"? Or are there any other interesting ways different languages would express arithmetic expressions?

๐Ÿ‘︎ 13
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/I_WANT_PRIVACY
๐Ÿ“…︎ Jul 07 2020
๐Ÿšจ︎ report
MathOverflow discussion: "Non-computable but easily described arithmetical functions" mathoverflow.net/questionโ€ฆ
๐Ÿ‘︎ 51
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/flexibeast
๐Ÿ“…︎ Feb 15 2020
๐Ÿšจ︎ report
TIL Archimedes's cattle problem, a 2 millenium-old poem containing an arithmetical problem which involves computing the number of cattle the sun god's herd, was discovered in 1773. It took 107 years for it to be solved. The answer was 7.76x10^206544, more cattle than could fit in the universe. en.wikipedia.org/wiki/Arcโ€ฆ
๐Ÿ‘︎ 91
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/F-O
๐Ÿ“…︎ Jun 09 2020
๐Ÿšจ︎ report
TIL that there is a dyslexia but for numbers and math called Dyscalculia. It means to have severe difficulty in making arithmetical calculations, as a result of brain disorder. bdadyslexia.org.uk/dyslexโ€ฆ
๐Ÿ‘︎ 68
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/hassan_26
๐Ÿ“…︎ Jan 08 2020
๐Ÿšจ︎ report
Is there a trait for arithmetical types?

I am trying to learn myself a little rust and played around with iterators:

struct NumberGenerator<T: Copy> {
    cur: T,
    func: Box<dyn Fn(T) -> T>,
}

impl<T: Copy> NumberGenerator<T> {
    fn new(func: Box<dyn Fn(T) -> T>, cur: T) -> Self {
        NumberGenerator { cur, func }
    }
}

impl<T: Copy> Iterator for NumberGenerator<T> {
    type Item = T;
    fn next(&mut self) -> Option<Self::Item> {
        self.cur = self.func.as_ref()(self.cur);
        Some(self.cur)
    }
}

fn main() {
    let mut odd_gen = NumberGenerator::new(Box::new(|x: f64| (1.0 + 1.0 / x).powf(x)), 0.0);

    println!("approximation of e:");
    for _ in 0..10 {
        println!("{}", odd_gen.cur);
        odd_gen.next();
    }

    // also usable with str
    let mut bla = NumberGenerator::new(Box::new(|x| x), "asf");
    bla.next();
}

As you can see, i restrict the generic type T to Copy. But i am still able to use my struct with str. So my question is: Is there a trait for arithmetic types, so i can use the struct with u8, f64... but not with str?

Something like Ord, but for +,*,/,-?

๐Ÿ‘︎ 5
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/floxo115
๐Ÿ“…︎ Aug 28 2020
๐Ÿšจ︎ report
I have dyscalculia, a brain disorder which gives me severe difficulty in anything arithmetical. I can't remember my own phone number of 7 years. AMA!

That's pretty much it. I may be answering a bit later in the day because of chores and whatnot, but I will answer everything! AMA!

๐Ÿ‘︎ 355
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/MMAntwoord
๐Ÿ“…︎ May 05 2019
๐Ÿšจ︎ report
Arithmetical error caused by picking up item from the floor.

Has anyone else experienced this in the latest experimental build. I'm not sure how to report a bug in the game but I know of at least 3 people who have experienced this so far in the latest experimental build. It's happened to me at least 4 times now. The only occurrence that I can confirm it happening with is a can of orange soda spawned on the floor of a house. Someone else had it happen with a Sealed Jar of Peanut Butter.

This error doesn't seem to occur with items inside of fridges, only on the floor of buildings.

๐Ÿ‘︎ 12
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/The_Omnissiah_
๐Ÿ“…︎ Nov 01 2019
๐Ÿšจ︎ report
What's the rationale behind this strangely orderly arithmetical pattern?
๐Ÿ‘︎ 19
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/miaumee
๐Ÿ“…︎ Oct 03 2019
๐Ÿšจ︎ report
The Arithmetical Origin of the Genetic Code link.springer.com/chapterโ€ฆ
๐Ÿ‘︎ 4
๐Ÿ’ฌ︎
๐Ÿ“…︎ Sep 22 2019
๐Ÿšจ︎ report
Published a Parser and Solver of Dynamic Arithmetical Expressions, Expressio! [Feedback appreciated]

(Product image)

Expressio it's an 'Automatic' Parser and Solver of custom provided arithmetical expressions.

Based onto the chosen implementation, it supports:

  • Constants: numeric string literals, formatted as: #.#####;
  • Variables: custom-defined string literals not followed by parentheses that hold values;
  • Operators: set of defined common operators like +, -, *, / etc; (Supported operators)
  • Functions: a default extensible and ovveridable set of functions to call within an expression;
  • Expressions/Arrays: mix and match of the above elements.

It is really easy to setup. and even easier to use!

You can find a 'Lite' (Demo) version of the product here: zzatomiic.gitlab.io/expressio

Otherwise, go check it on the Unity Asset Store: assetstore.unity.com/packages/expressio

What do you think of it?

If you end up using it in a project/demo, post an example of your work with Expressio here in the comments!

๐Ÿ‘︎ 3
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/ZzAtomiic
๐Ÿ“…︎ Jul 10 2019
๐Ÿšจ︎ report
Can you suggest a "drill and kill" book for improving algebraic manipulation and arithmetical computation skills?

I am looking for a book that contains a bunch of brain-dead exercises that train your algebraic manipulation and arithmetical computation skills. I find that lacking of such a technical foundation is a major cause for why students find Mathematics at the high-school level difficult.

Does anyone know of any such resources? I don't want any verbose, "fat" material. The book should be very lean - just the exercises and the answers.

Edit: Thanks for all the replies! So far, I have found two very useful resources that suits my purposes.

  1. The pair of books suggested by /u/likecharges
  2. The book "Essential Mathematics" by Franco Vivaldini which was written to solve a similar issue at the university level. Very handy!
๐Ÿ‘︎ 19
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/newyearcakeday2017
๐Ÿ“…︎ Mar 14 2019
๐Ÿšจ︎ report
Back to enhancing my arithmetical abilities
๐Ÿ‘︎ 38
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/Naise_sky
๐Ÿ“…︎ Jul 13 2019
๐Ÿšจ︎ report
How does making arithmetical statements about Godel numbers correspond to valid/meaningful logical statements about the formulas within the formal system that the Godel numbers represent?

Also, what exactly is an "arithmetical statementโ€?

๐Ÿ‘︎ 3
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/PuppyLand95
๐Ÿ“…︎ Jan 04 2019
๐Ÿšจ︎ report
Is there a name for the progression of arithmetical formalisms Z1, Z2, ... and where can I find theorems relating them?

I've seen second-order arithmetic denoted as Z2 (Z with '2' subscripted, e.g., here), so if first-order arithmetic is Z1 there is presumably an infinite set of arithmetic theories Z3, Z4, ... . Is there a name for this set?

And is there a good resource to find theorems relating elements of this set? For example, Buss' proof of Gรถdel's speedup theorem uses the fact that for any Zi, you can prove the consistency of Zi from within Z(i+1), but not from within Zi. What other convenient relations does Zi have to Z(i+1)?

๐Ÿ‘︎ 5
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/respeckKnuckles
๐Ÿ“…︎ Aug 02 2019
๐Ÿšจ︎ report
Numbers Are Just an Arithmetical Value Made By Mere Mortals
๐Ÿ‘︎ 15
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/edgeXlendor
๐Ÿ“…︎ Jan 27 2019
๐Ÿšจ︎ report
An interesting new paper by John Conway: On Unsettleable Arithmetical Problems jstor.org/discover/10.416โ€ฆ
๐Ÿ‘︎ 90
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/asdsadwqqwqw
๐Ÿ“…︎ Feb 19 2013
๐Ÿšจ︎ report
What arithmetical proposition does the Gรถdel sentence express?

Apologies if this is a very basic question, I'm working through the Incompleteness theorems for the first time.

By arithmetisation of strings, formulae, and proofs of the language of arithmetic (LA), and by the representability of recursive functions in LA, we can form these interesting formulae in LA like "Formula(x)" or "Provable(x)". These formulae have one free variable, x, and are true of a natural number n iff n is the Gรถdel number of a formula or a provable sentence or whatever.

Gรถdel uses these facts to produce a formula, "Unprovable(x)" which is true of a natural number n iff n is the Gรถdel number of an unprovable sentence of LA. Then, by substituting for x the Gรถdel number of "Unprovable(x)" itself, we get a sentence that "says of itself that it's unprovable", and so on.

My question is: what sort of sentence in LA does this produce? If g is the Gรถdel number of "Unprovable(x)", what arithmetical claim does "Unproveable(g)" make? For example, is it an equation, or an inequality, or a quantified formula?

Many thanks in advance and please feel free to correct me if I've made any expository mistakes above.

๐Ÿ‘︎ 5
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/bloomian
๐Ÿ“…︎ Jul 02 2018
๐Ÿšจ︎ report
Numbers Are Just an Arithmetical Value Made By Mere Mortals
๐Ÿ‘︎ 39
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/snuffybox
๐Ÿ“…︎ Jan 27 2019
๐Ÿšจ︎ report
The selected entrant must first correctly answer, unaided, a time-limited, arithmetical, skill-testing question marginalrevolution.com/maโ€ฆ
๐Ÿ‘︎ 16
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/cavedave
๐Ÿ“…︎ May 13 2009
๐Ÿšจ︎ report
There are no 143,000 missing refugees in Germany: "What seemed like a scandal turns out to be an arithmetical problem" (German source) zeit.de/politik/deutschlaโ€ฆ
๐Ÿ‘︎ 68
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/partysani
๐Ÿ“…︎ Feb 27 2016
๐Ÿšจ︎ report
arithmetical operations = arithme-tickle operations

cause math can have fun too

๐Ÿ‘︎ 4
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/ForwardWave
๐Ÿ“…︎ Aug 26 2019
๐Ÿšจ︎ report
[photos] After some arithmetical mistakes, I finally finished building my first ortholinear keyboard imgur.com/a/94ZhS
๐Ÿ‘︎ 26
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/krymz1n
๐Ÿ“…︎ Sep 21 2017
๐Ÿšจ︎ report
I am a craftsman building the Antikythera mechanism. I need to figure out the ratios (size and number of gear teeth) between two gears. What would my arithmetical process be?
๐Ÿ‘︎ 9
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/SeattleMonkeyBoy
๐Ÿ“…︎ Oct 12 2017
๐Ÿšจ︎ report
Arithmetical theorems with Lambda Calculus shhaumb.github.io/arithmeโ€ฆ
๐Ÿ‘︎ 26
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/sjiitr
๐Ÿ“…︎ Feb 09 2017
๐Ÿšจ︎ report
Why is 1.618034 So Important? Short Vid kinda cool, kind of arithmetical. youtube.com/watch?v=keLN8โ€ฆ
๐Ÿ‘︎ 20
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/pokeurmom
๐Ÿ“…︎ Feb 22 2018
๐Ÿšจ︎ report
[High School Mathematics] Arithmetical / Geometric Progressions

Alright, so I get the basic stuff, how to calculate the sum, the nth term or whatever, what I'd like to ask you is what's the logic behind solving excerises like these:

  1. Let a^n, where n >= 1, be an arithmetical progression, for which a^3 + a^19 = 10. Find the sum of a^6 + 1^16.

Like I can write the terms in the other forms like this:

a^3 = a^1 + 2d

a^19 = a^1 + 18d

So 2a^1 + 20d = 10. That means that a^1 + 10d, or a^11 = 5. And then what?

  1. Let a^n, where n >= 1, be an arithmetical progression, for which S^n is equal to the sum of the firs n terms.

If a^1 + a^4 = 100, a^n-3 + a^n = 200 and S^n = 600, find n.

  1. a, b, c are integers. We know that the sum of the three numbers is an even number, find out whether a, b or c are even or not.

Sorry if it's a long post, but.. it's a sort of more difficult subject and having a shit math teacher.. yeah..

EDIT: I have no idea how to type like.. subscripts in reddit so I went with exponents. They're supposed to be down under, you get it.

EDIT 2: Just found the "Custom superscript and subscripts" part. I'm kinda dumb.

๐Ÿ‘︎ 3
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/yaygayinmybay
๐Ÿ“…︎ Jan 05 2015
๐Ÿšจ︎ report
a dust speck ICO, 3โ†‘โ†‘โ†‘3 tokens issued to fund the torture of satoshi nakamoto. naive arithmetical utilitarianism proves its ethical necessity. aicoin.io/
๐Ÿ‘︎ 3
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/dgerard
๐Ÿ“…︎ Sep 13 2017
๐Ÿšจ︎ report
Proof of Increasing 'Power' of the Arithmetical Hierarchy

Hi All

I am looking for a proof that the arithmetical hierarchy does not 'collapse' to some finite level, that is, mathematical utility of each new set of arithmetical statements included as the number of alternations of โˆ€ and โˆƒ quantifiers are included/permitted, right up to a countable infinity of alternations.

Note that I am not looking for you to prove this to me as a reply, but rather direct me to a textbook/paper or internet resources where this proof is done (preferably the former) and which I can cite in a thesis I am writing about this stuff.

Thanks in advance

Reg.

๐Ÿ‘︎ 3
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/ReginaldHardwick
๐Ÿ“…︎ Nov 09 2017
๐Ÿšจ︎ report
TIL Svante Arrhenius, a Swedish scientist, taught himself how to read by the age of three, without any encouragement from his parents. He also became an arithmetical prodigy from watching over his father's addition in his account books. en.wikipedia.org/wiki/Svaโ€ฆ
๐Ÿ‘︎ 71
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/TheyCallMeCorona
๐Ÿ“…︎ Jun 10 2013
๐Ÿšจ︎ report
How does making arithmetical statements about Godel numbers correspond to valid/meaningful logical statements about the formulas within the formal system that the Godel numbers represent?

Also, what exactly is an "arithmetical statementโ€ in this context?

๐Ÿ‘︎ 2
๐Ÿ’ฌ︎
๐Ÿ‘ค︎ u/PuppyLand95
๐Ÿ“…︎ Jan 04 2019
๐Ÿšจ︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.