Solve for x (How long will it take with individual parameters?)

Hey guys, thanks for your time.

I know this might seem very stupid and basic to some of you, but I wasn’t the most attentive in maths classes back in school. Oh and it’s also very late. So I wouldn’t even know what to google, sadly.

I’ve commented the variables with some example values - the rest should be self-explanatory.
Please help me find a solution for this problem.

Thank you very much in advance,
Abaris

EDIT:
The values are just example values. In the end, I want to be able to macro this with individual input values.

It’s not :stuck_out_tongue:
I want to do a macro/function with input variables like above to be able to figure out how long the incremental process will take - for every instance of an actor.

Now, with values like MinScale = 1, MaxScale = 10, GrowthTimeFactor = 1, GrowthScaleFactor = 1, to get x for these particular values is pretty simple - I get that (even did it on a sheet of paper, due to, again, it being very late xD).

What I need is a blueprintable function :smiley:
(edited OP to clarify, sorry)

Are these your homework? :wink:

Open your favorite spreadsheet, make a column with Time (starting at 0), another with Current Scale (starting at 0.01), make Time increase by 0.05 per row, multiply the previous row’s Current Scale by 1.005 and keep going until the Current Scale reaches or exceeds 5.0. Now read what is in the Time column, that is your answer.

I suppose this works - or does it O.o ?
I’ll work this into a macro and use it, I guess.
Feel free to correct and/or improve this xD

Cheers,
Abaris

Seems to work!

Or use a closed form solution here

I would for the life of me never have gotten to " (0.01)*(1.005)^(x/0.05)-5=0 " xD