|
⇤ ← Revision 1 as of 2010-08-10 11:34:47
Size: 712
Comment:
|
Size: 746
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 52: | Line 52: |
| * <Your Name>, <Profession>, <Organization> * <Your Name>, <Profession>, <Organization> |
* ganesh, developer, space * bhanukiran, student, technical university of Delft * saransh, student, sobhit university |
Book
Advanced Engineering Mathematics
Author
Erwin Kreyszig
Edition
8th Edition
{{{id=1| #(i) omega = sqrt(20/5)
f = var('f')
solve(2*pi*f == omega, f) /// [f == (1/pi)] }}}
{{{id=2| #(ii) omega = sqrt(45/5)
f = var('f')
solve(2*pi*f == omega, f) /// [f == 3/2/pi] }}}
<p>sage seems to have troubles writing f = 3/2*pi</p>
{{{id=3| #(iii) omega = sqrt(65/5)
f = var('f')
a = solve(2*pi*f == omega, f) /// [ f == 1/2*sqrt(13)/pi ] }}}
{{{id=4|
/// }}}
Solution by:
- ganesh, developer, space
- bhanukiran, student, technical university of Delft
- saransh, student, sobhit university
