• 3 Posts
  • 15 Comments
Joined 2 years ago
cake
Cake day: June 14th, 2023

help-circle
  • Somewhere in the OP you mentioned NSAID’s which are what I get prescribed - the one I have is called diclofenac and it’s stronger than ibuprofen but there are even stronger ones too.

    Oh, no no no no! I was prescribed two NSAIDs back in Oct of 21, and only took them for two weeks. The issues I got from them haven’t stopped since. High blood pressure, difficulty breathing (They’ve at least added almost the same amount if not more issues as my smoking had up to that time. Constantly coughing up sugary, salty phlegm), and about a year ago an off-and-on pain just below my front ribs (All across), oh, and dizziness…really really really bad dizziness…Used to be worse than my pains, but I think that’s changing.

    Oh, and a doctor prescribed omeprozole to help with the stomach and lungs in February of 22, and I gained almost 20 pounds in one month…I have only gained that much weight that fast once in my lifetime, and that’s when I attempted to quit smoking in 99 or 98. Only recently have I finally gone under 200 lbs, but I’m still 5 away from my heaviest, and 10 from my weight before I took the omeprozole.

    Which is one thing I’m seriously worried about, the first two years my lungs would clear up once in a while, and I could breathe normally, but about mid to late 2023 they have not gone back to being that good at all. No matter how I feel. I really need to get screened, but of course, I finally get the nerve to stand up for myself and setup a doctors appointment, now I have to find a whole new way to live, yeesh!


  • Don’t know. Every time I tried saving money for the mri, I’d get snapped at about not helping out, to which I’d cave and blow what I’d save. But I know what caused most of them, Furniture Delivery. Tore a muscle or tendon in my left arm, meniscus tear in my left knee. At least two or three parts of my back are from that, too. The worst spot in my upper spine is the only odd one out. Probably caused from carrying backpacks of books from my youth.

    This morning almost my whole back feels like it’s on fire, and my upper spine hurts like hell. Oof, and I think my knee and arm hurt a bit, but are drowned out by my back.



















  • I did find that it can be done arbitrarily. Mind is definitely not into writing about it, though, but here’s the gp code I wrote to look it over.

    /*
        There may exist a 0<=t<s such that
        s divides both x and (x+(x%d)*(t*d-1))/d.
    
    
        To show this for solving for divisibility of 7 in 
        any natural number x.
    
        g(35,5,10) = 28
        g(28,5,10) = 42
        g(42,5,10) = 14
        g(14,5,10) = 21
        g(21,5,10) =  7
    */
    
    g(x,t,d)=(x+(x%d)*(t*d-1))/d;
    
    /* Find_t( x = Any natural number that is divisible by s,
               s = The divisor the search is being done for,
               d = The modulus restriction ).
    
        Returns all possible t values.
    */
    
    Find_t(x,s, d) = {
        V=List();
        
        for(t=2,d-1,
            C = factor(g(x,t,d));
            for(i=1,matsize(C)[1],if(C[i,1]==s, listput(V,t))));
            
        return(V);
    }   
    

    One thing that I noticed almost right away, regardless what d is, it seems to always work when s is prime, but not when s is composite.

    Too tired…Pains too much…Have to stop…But still…interesting.



  • Not sure, (“Older and a lot more decrepit” doesn’t mean “younger an a lot more mentally sound”, heh. Do wish I could change that, but meh, I can’t).

    Anyway, I did find a method similar to what you wrote, so I can redefine it in your terms.

    A base 20 number is divisible by 7 if the difference between 8 times the last digit and the remaining digits is divisible by 7.

    Ok, a little description on a base 20 number (Think Mayan and Nahuatl/Aztec numbers). 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 should be considered single digits. So a base 10 number, 7*17 = 119 (1*10^2+1*10+9), would be 7*17 = 5:19 in a base 20 system (5*20+19).

    • is 1:8 divisible by 7? (28 in base 10). 8*8 = 3:4. 3:4-1 = 3:3
      • is 3:3 divisible by 7? 8 * 3 = 1:4. 1:4 - 3 = 1:1 (1*20+1 = 21).
    • is 9:2 divisible by 7? (182). 2*8 = 16. 16-9 = 7 Check.

    I’ll just leave that there. So a long weird way of saying, yes, that’s pretty much my reasoning, but not exactly at the same time. As the first message included the base 20 numbers divisible by the base 20 single digits 7, 13, and 17. (Hopefully that came off a little better).

    (Note: Saying “base 20 number[s]” is not important overall. Just being overly descriptive to differentiate between base 10 digits and base 20 digits).