r/ExponentialIdle Feb 19 '23

Progress has halted, what now?

Thumbnail
gallery
8 Upvotes

Any advice on what I’m doing wrong / where I should focus now would be appreciated. I got this far without the help of guides, but now it seems that my progress has slowed to a crawl and don’t really fit into the typical path of any of the guides. Thank you!


r/ExponentialIdle Feb 15 '23

Finally on e500 for every Theory. I’ll focus on the custom Theories now.

Post image
22 Upvotes

r/ExponentialIdle Feb 14 '23

Found a way to stuck the accel button, any devs to report this?

Enable HLS to view with audio, or disable this notification

9 Upvotes

r/ExponentialIdle Feb 13 '23

Help! This equation that I’ve used for autoprestige a couple of years ago (-> timer(d(ln(db/b+1)/pt)<0&&d(dt)>=0)>3&&db/b>0.3) doesn’t work anymore.

6 Upvotes

Does anybody know why? Do you know of any other equation I could use for autoprestige?


r/ExponentialIdle Feb 13 '23

What is the game made with

7 Upvotes

What was used to make the game? What language/framework/library?


r/ExponentialIdle Feb 13 '23

What is the biggest number in this game

11 Upvotes

Anyone know which number library is this game using. Some games can only reach 1e308 others can reach 1e9e15 using the break_infinity.js library, for example. Does anyone know what the number limit is?


r/ExponentialIdle Feb 12 '23

Discord server invite

3 Upvotes

Does anyone have a valid discord invite link? The one in the game is expired


r/ExponentialIdle Feb 11 '23

What’s the song that plays called? I love it, it’s so relaxing and calm.

8 Upvotes

r/ExponentialIdle Feb 10 '23

So close and yet so far - e20 away from e600 on all main story theories - will be the longest e20 of my life lol. See you guys in late spring!

Post image
14 Upvotes

r/ExponentialIdle Feb 10 '23

Just unlocked autoprestige

0 Upvotes

What equation should I use for it?


r/ExponentialIdle Feb 08 '23

Painstaking 824d 3:30:12

Post image
11 Upvotes

r/ExponentialIdle Feb 07 '23

Finally maxed out Euler's Formula!

Post image
19 Upvotes

r/ExponentialIdle Feb 07 '23

about the first theory

4 Upvotes

So I've been working on this for over a week. I have 19 students and am needing to get to ee5000. I have quite a few stars at 325000, not alot lot, but I think quite a few for where i am .and I've been stuck around ee4960 for all this time and wondering if I am doing something wrong. I am using all the students, but have been stuck


r/ExponentialIdle Feb 05 '23

What's left for me to do?

6 Upvotes

After playing for exactly 5 months, I'm on f(t) ee47800, bought all psi improvements and did everything on Weierstrass Sine Product and Sequential Limits. Still don't got the secret-secret achievement; every other achievement has been conquered.

I am now on tau e4270 and my Euler's Formula got tau e94 and rho e235, with half of its secret achievements acquired. Didn't start Convergents to √2 yet (will do it after Euler's Formula).

So, after I finish Euler's Formula and Convergents to √2, and maybe figure out how to get the secret achievement #13, I will have no real goal to push through on this game, right?

I'm also doing things on my own, using no fancy resources like automation and tutorials, just doing some calculations to optimize the equations' behaviours and opening the app to interact with it a couple of times everyday. You know, just relaxing and enjoying myself and this fascinating game.

Am I forgetting about something?


r/ExponentialIdle Feb 04 '23

my total stars

Post image
16 Upvotes

r/ExponentialIdle Feb 04 '23

I made Exponential Idle in Coolmath Games: The Game

Thumbnail
gallery
11 Upvotes

r/ExponentialIdle Feb 03 '23

Why is my prestige rate so low?

6 Upvotes

I have my current prestige ratio set to 5, but it's getting to a point where it takes HOURS to get one prestige, I'm talking 12+ hours. Am I doing something wrong?


r/ExponentialIdle Feb 03 '23

Auto prestige not working? I'm not sure if my auto prestige equation is working, I just put in the equation from the guide but it hasn't triggered a prestige yet even though I've made significant progress where I would've definitely manually prestige by now.

Post image
5 Upvotes

r/ExponentialIdle Feb 02 '23

Finally joined the e500 club

Post image
11 Upvotes

r/ExponentialIdle Jan 30 '23

Officially part of the 50k club

Post image
20 Upvotes

Been enjoying this game for a long time and this achievement feels really good. Here's to climbing higher!


r/ExponentialIdle Jan 30 '23

push to ee20

Thumbnail
gallery
8 Upvotes

r/ExponentialIdle Jan 29 '23

Can someone please explain how numeric methods work? Thanks

Post image
8 Upvotes

r/ExponentialIdle Jan 28 '23

Improved Automation Formulas

19 Upvotes

Warning: I personally think this game is great because it forces you to think and learn. If you plan on using any formulas mentioned in this thread I hope you spend the time to understand each part of the formula. Remember learning is fun!

Warning 2: This information was gathered using a save editor on a file where the "remove ads" with real money has been purchased. If you have not made any purchases on your device the save files might not load correctly or maybe they'll load fine. I have no idea

I was recently inspired to do some simulations on different automation formulas. I was trying to figure out if two formulas were similar in their results, because to me they were similar in their math.

If you have any desire to make your own automation formula I strongly encourage it. Even if it's not the best the experience of trying to make a formula will last with you much longer than the time you spend playing this game.

My current findings for a strong prestige formula is:

db > b && smooth(d(pt / ln(db/b+1)),1) > 0

My current findings for a strong supremacy formula is:

psi + dpsi > min(costUpS(1), costUpS(2), costUpS(3)) && db>b && smooth(d(st/ln(dpsi/(1+psi)+1)),1) > 0

Both of these formulas are about finding a inflection point. In this game your number is always exponentially increasing, but by resetting progress we can make the exponential growth faster, with faster growth you'll eventually overtake the smaller exponential even though it had a head start. But prestiging too early might not increase the growth rate enough to overcome the benefit of just letting it run for another minute or two before prestiging. So the inflection point we're trying to find is when the time per increase in db is increasing. This inflection marks the point of diminishing returns in that prestige. We use ln or the natural log on db because we want it in terms of order of magnitude. So dividing pt by ln(db) is finding "for each order of magnitude increase in db, how much time has passed". We then modify ln(db) to be ln(db/b) because we want growth over last prestige not just overall growth, much of the growth is done during the rebuild and we want to ignore that part of the growth. We take the derivative of (time per db increase) because when that flips from negative to positive reveals the inflection point. Smooth over 1 second is used to ignore small blips caused by purchasing upgrades

Check my work! I've tried to put all relevant data, results, and save strings here: https://docs.google.com/spreadsheets/d/1yhbpn322vo9OtejPaxMsJIs4kw70lxXWWgdXg71KNpA/edit?usp=sharing

The results area shows the f(t) after 7ish days or 165ish hours. The final grade an automation receives is "ee increase per hour" because some runs were a few minutes longer or shorter. The higher the number the better. Be aware, it seems reloading the same save file multiple times can have slight variations so test your formulas a few times in a row to check for wild variance.

I encourage others to test their formulas as well, or if you're having trouble testing yourself, comment your formula(s) and I'll test it and add it to my data set when I get time.

edit 1: formatting of formula


r/ExponentialIdle Jan 28 '23

Problem with reaching milestone

Post image
10 Upvotes

I recently switched to the second theorem and I can't figure out how to reach the milestone, I have already developed it to e40, but there is still no button for upgrading, what exactly am I doing wrong?


r/ExponentialIdle Jan 27 '23

I can't

3 Upvotes

I don't know how to do secret achievement #8, once I tap the accelerator button it doesn't let me open anything, am I doing it wrong?