I tried setting up a simple function in wxMaxima - but find that the answer is symbolic. I've tried using float() in conjunction with the function that I've created, but float() doesn't fully convert the symbolic answer to a single number.
Is there any way to get a numeric answer from the following?
Below is how I set up the function in wxMaxima. It is hard to see since this message isn't graphical - but the issue I have is that the exponential never gets evaluated for some reason. Why?
EDIT: I've added a screen capture (easier to read).
side note: I think part of the information below is in the LaTex Format (not sure) - I'm referring to: (\ensuremath{\alpha})
(%i3) R1:500;
500(R1)
(%i4) R2:540;
540(R2)
(%i5) C:1E−6;
1.010−6(C)
(%i6) RC:R1·R2;
270000(RC)
(%i7) α:R2/(R1+R2);
2752(\ensuremath{\alpha})
(%i8) Vs:1;
1(Vs)
-->
Vo(t):=Vsα(1−e−tRC)(%o9)
(%i10) Vo(200E−6);
27(1−1e7.40740740740740810−10)52(%o10)
(%i14) %o10, number;
27(1−1e7.40740740740740810−10)52(%o14)
(%i15) float(%o14);
0.5192307692307693(1.0−1.0e7.40740740740740810−10)(%o15)