Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

All published worksheets from http://sagenb.org

Views: 168701
Image: ubuntu2004
var('lamb z f_main f_mla')
(lamb, z, f_main, f_mla)
lamb_range = (-f_main**2)/(f_mla*(f_main - z))
@interact def _(f_main_ = slider(range(5, 100), label='Main Lens Focal Length'), f_mla_ = slider(srange(0.02, 0.05, 0.001), label='Microlens Focal Length')): lr(z) = lamb_range.subs({f_main: f_main_, f_mla: f_mla_}) pt = plot(lr, 100, 1000, axes_labels=["Subject Distance (mm)", "Lambda Range"]) html('$f(x)\;=\;%s$'%latex(lamb_range)) show(pt)
Main Lens Focal Length 
Microlens Focal Length 
[removed]
[removed]
[removed]
[removed]