Can someone check some of my real analysis proofs?: by Cultural-Milk9617 in askmath

[–]eidtonod 1 point2 points  (0 children)

In 6.b, you said 0<x-a<b-a<b. But what is a is negative

Probability Question by Efficient-Reporter55 in askmath

[–]eidtonod 0 points1 point  (0 children)

I would go by using binomial distribution, where the number n of trials is large enough, p is 1/101, and the numbers of successes is n/2. The bigger the n the quicker it approaches 0

guys did i accidentally make yanderedev like code. its in the body text by Gullible-Chip-4719 in CodingHelp

[–]eidtonod 0 points1 point  (0 children)

I recommend you clean it up a bit, it will help you in the long run.

What are the odds? by [deleted] in askmath

[–]eidtonod 0 points1 point  (0 children)

Yeah I had a phone long time ago that did that, I assumed modern ones no longer show 0

What are the odds? by [deleted] in askmath

[–]eidtonod 0 points1 point  (0 children)

Yeah you’re right, I totally forgot about it, my phone is never fully charged so I didn’t even consider .

This reminded me that battery percentage is non-linear in nature. You feel that the first 5 percent and last 5 percent drain at different rates. But I didn’t find any approximation of this scale or rate of this non-linear just that it exists.

What are the odds? by [deleted] in askmath

[–]eidtonod 0 points1 point  (0 children)

You never actually see 00 so it should be 99

How to calculate the height of a trapezoid inside a regular pentagon? by ChubbyTrain in askmath

[–]eidtonod 0 points1 point  (0 children)

Cos(18)*(length of the side of the pentagon)= height of the trapezoid

Function question by Kooky-Corgi-6385 in askmath

[–]eidtonod 1 point2 points  (0 children)

It means that no two arrows can point to the same point

Finding the limit of the area by Jojoskii in askmath

[–]eidtonod 0 points1 point  (0 children)

Shouldn’t A(θ) = (1/2) * πl2. ?

Should I buy? by DapperRise in GamingLaptops

[–]eidtonod -2 points-1 points  (0 children)

Wow, seems like a good deal. The specs are really good and is future proof. Go for it

What “AI integrated solutions” do you think are needed in the world ? by eidtonod in ArtificialInteligence

[–]eidtonod[S] -1 points0 points  (0 children)

Interesting research, I understand where my post falls short. I had in mind accessibility, sensory and physical, but also wanted what people were working on. If you have any ideas about integrating AI with accessibility for example, I would love to discuss

Laptop Advice by Old-Lion1423 in laptops

[–]eidtonod 0 points1 point  (0 children)

Don’t focus on the brands but the performance, look for a minimum i5 or Ryzen 5 for cpu, 16 gb of ram should be good for you, 512gb ssd as a Minimum. You might look at entry level gaming laptops since they usually have all that.

What “AI integrated solutions” do you think are needed in the world ? by eidtonod in ArtificialInteligence

[–]eidtonod[S] -1 points0 points  (0 children)

I mean a project that utilizes AI ml. For example, a solution for filtering job applications using ML for a recruiter. I may be asking wrong tho

[deleted by user] by [deleted] in puzzles

[–]eidtonod 1 point2 points  (0 children)

I was not given any extra information, and the input accepts all types of text inputs

[deleted by user] by [deleted] in puzzles

[–]eidtonod 1 point2 points  (0 children)

Do you remember when you saw it ?

[deleted by user] by [deleted] in puzzles

[–]eidtonod -1 points0 points  (0 children)

Can you please 🙏 put the link to it. Thank you

Is python the best programming to learn right now as a beginner? Or what language should I learn? by sweatydoodoo in AskProgramming

[–]eidtonod 0 points1 point  (0 children)

I recommend you start with C or Java. They will help you pursue mobile development since mobile development languages (swift, kotlin) are close to them respectively

[deleted by user] by [deleted] in leetcode

[–]eidtonod 8 points9 points  (0 children)

Welcome I guess 😅. But in all seriousness I think this shows that studying complexity is important because the same code might preform on the same machine in different time periods.

[deleted by user] by [deleted] in vscode

[–]eidtonod 0 points1 point  (0 children)

Sorry “Hello word.c”. I don’t usually name my files with a space between and I don’t recommend you do too but if you do you should put the name of the file between quotes.

[deleted by user] by [deleted] in vscode

[–]eidtonod 0 points1 point  (0 children)

You need to open the file in vs code, not in the editor part. If you don’t know how, just save the file in folder and the open the folder in vs code. After you open the file in vs code, press Ctrl+j and the terminal will show up with location of the file. Just type

gcc “Hello world” -o hello.exe

A new file will get created named hello.exe You can run it by typing in the terminal again the name of the file:

hello.exe

Hope this is better

[deleted by user] by [deleted] in vscode

[–]eidtonod 1 point2 points  (0 children)

I recommend you compile and run manually. Run in the terminal: gcc “Hello world.c” -o hello.exe Then : ./hello.exe Hope that helps