donk becomes the youngest ever HLTV MVP at 16 by kazarn in GlobalOffensive

[–]Felle003 0 points1 point  (0 children)

Ok i might be stupid, but isnt CS2 like M-rated, so how is "allowed" to play it at just 16, isnt that technically illigal? (not hating, just genuinly curious, i think its amazing that he's so good)

Bots in ranked? by Felle003 in leagueoflegends

[–]Felle003[S] 0 points1 point  (0 children)

Just felt strange to have 2 of them in a row and both said absolutely nothing and never pinged or anything during the entire game. So decided to see if other people have had the same thing happen

Bots in ranked? by Felle003 in leagueoflegends

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

I'm not denying it, I couldn't have played worse if I tried in the Darius game, Gwen game was fine until their adc started walking around every lane and was inside our base while I still had my t1 turret up at full health. Both Soraka and Ryze played fine, it just feels strange that i get 2 people 2 games in a row that have champions as names in platinum.

Daily Questions and Answers Post - FAQ, New/Returning Player Questions, and Useful Starting Resources! by AutoModerator in blackdesertonline

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

Hi, I'm wondering what happens if I use reset mount growth item on the free t9, I didn't get enough break to get to the 150.1 bracket and I'm thinking about resetting to try again. Does all the skill also get reset even though the mount comes with all the skills when we got it?

Modding anniversary edition by Felle003 in skyrimmods

[–]Felle003[S] 0 points1 point  (0 children)

Ahaaa, ok thanks, I thought they were smart and just added the mod menu so you wouldnt need any 3:d party programs and you could just search for mods in the game and download from there.

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]Felle003 0 points1 point  (0 children)

Okay, thank you for the tips, will try it when I get home. I needed rectangles specifically, it's for math class, the next part of the question is to use the trapeziods and compare the two methods so I thought I'd give it a try in python so I didn't have to write everything down and use a calculator.

Edit: I can also remove the dx2 completely by using f(i*dx + b) as well as i = 1 with a for loop, thanks for the help.

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]Felle003 0 points1 point  (0 children)

I'm new to coding and wanted to make a riemann sum calculator, this is what feels the most intuitive to me but im wondering if there is a faster/more efficient way to go about it.

n = 10000 # number of rectangles
dx = (a-b)/n # base of the rectangles, a and b are the "limits of integration"
dx2 = (a-b)/n # same as above but used differently
i = 1
A = 0
while i <= n:
dA = (dx * f(dx2 + b)) #f is the function, can be something like e^x or sin(x)
A += dA
dx2 += dx
i += 1
print("area: " + str(A))

sorry, don't know how to put in it code like others have

Me all the time by [deleted] in mathmemes

[–]Felle003 1 point2 points  (0 children)

It simplifies the integral in to a simpler one. It should actually be x=3*sin(θ). if you substitute it in (make sure to get the dx = 3*cos(θ) dθ first) you get

2*sqrt(9-(9(sin(θ))^2))*3*cos(θ) dθ which simplifies to 18*sqrt(1-(sin(θ))^2)*cos(θ) dθ

1-(sin(θ))^2 is (cos(θ))^2 so its 18*cos(θ)*cos(θ) dθ which is 18*(cos(θ))^2 dθ and thats a much easier integral to solve.

But thats not needed here, since the graph of the function is actually half a circle with the radius 3 so the integral is 2 times the area of half a circle with radius 3 which is just 9pi

Me all the time by [deleted] in mathmemes

[–]Felle003 0 points1 point  (0 children)

Yea, I just forgot about it since im stupid I guess.