Spyke

f(w,t)=sin(wt)/w. Help make defined at w = 0.

Is there a way to make the function

f(w,t)=sin(wt)/w

defined at w = 0?

I want to achieve better numerical stability, and make it continuous everywhere.

Observation: Using limw->0 f(w,t)

I know that at w = 0:

f(0,t) = t

Is it possible to improve this function? I would be really glad to know and why, how. Thank you in advance!

I really do not want to code in smth like: if w < 0.001 { x = t; }

Background notes: My equation also has constant v coefficient, but I removed it for simplicity. f(w,t)=v*sin(wt)/w

If I derived this correctly this should be x component of a motion of a car that rotates with rate w. It goes with const speed and const steer.

These are consts: v - speed, l - base length(dist from rear to front shaft), a - steering angle.

w(a) is defined idk if correctly. w(a) = (vsin(2a))/(2*l) I just logically added proportions, projections, imagining a rear wheel powered car. Put some values I am somewhat confident in, such as: w(0) = 0 w(π/2) = 0

View original on discuss.tchncs.de

What do you think about calculator use in learning math?

I remember back in 2007 feeling that my TI-89 was almost unfair. Pretty sure I used it for the ACT, and you can solve something like 60% of problems with no effort if you just learn how to graph. And now you can use Desmos on the ACT.

Nowadays, most students in higher level math are equipped with calculators that can just solve things. You don’t need to learn how to convert fractions to decimals, or work with a percentage, or even do algebra (80% of working with calc 1 students can often be “yeah here’s how to put it into solver”).

I’m very torn on this. On one hand, I think that doing it by hand is the only way to develop on understanding of what it all means. There’s patterns to what a base system mean that you start to “get” once you’ve done enough borrows and carries. Small and consistent practice in the small skills adds resonance to the major skills you are building to.

On the other, there are things like dysgraphia that just there’s no reason to not work around. Some people can’t hold onto times tables. There are amazing ways to do multiplication that are slow but work for people (draw a rectangle - 3x4 best for demo purposes - have person count squares, bam, you have now outdone their 2nd grade math teacher.) Why bar someone who can’t memorize things but can understand why things work from further study of math?

I do sorta wish that the SAT kept its no calculator section though. It would be interesting to make a bunch of adults take the modern tests and compare their scores to they got 20+ years ago…

View original on lemmy.world
9

Searching for a smooth function that goes from flat zero to exponential growth

Last night an old idea came back to me, an idea about a function where all the derivatives start from zero and then grow smoothly. I thought it would be impossible, but then I found some interesting stuff on Wikipedia. So, I learned to use SymPy and wasted a lot of time with it. Here's a report of my (non-)findings.

(UPDATE: I did some numerical differentiation, which showed that h(x) does have negative derivatives. See details in this comment. A disappointment, although perhaps not a surprising one. It doesn't however, necessarily mean the goal is impossible.)

So, if anyone knows whether such a function exists and what it looks like, please tell me.

View original on lemmy.world
14