Geometry.Net - the online learning center
Home  - Theorems_And_Conjectures - Math Constant
e99.com Bookstore
  
Images 
Newsgroups
Page 6     101-110 of 110    Back | 1  | 2  | 3  | 4  | 5  | 6 

         Math Constant:     more books (33)
  1. A List of Factorial Math Constants
  2. A List of Factorial Math Constants by Unknown (World Cultural Heritage Library) by Frank Nelson Palmer, 2009-03-03
  3. Catalan's Constant by Math Books, 2008-06-02
  4. The Constant Couple by George Farquhar, 2010-08-18
  5. Bows, Arrows, and Aircraft Carriers: Moving Bodies with Constant Mass (Math in a Box) by Films for the Humanities & Sciences (DVD), 2004
  6. Take-off: Moving Bodies with Constant Mass (Math in a Box) by Films for the Humanities & Sciences (DVD), 2004
  7. A List of Factorial Math Constants
  8. A List of Factorial Math Constants
  9. Vapor Pressure and Antoine Constants for Hydroncarbons, and Sulfur, Selenium, Tellurium, and Halogen Containing Organic Compounds (Landolt-Börnstein: Numerical ... - New Series / Physical Chemistry)
  10. Physical and Chemical Processes and Gas Dynamics: Cross Sections and Rate Constants (Progress in Astronautics and Aeronautics, 196) by S. A. Losev, S. O. Macheret, et all 2002-04
  11. Constant: Webster's Timeline History, 1996 by Icon Group International, 2010-03-10
  12. Constant: Webster's Timeline History, 1989 - 1990 by Icon Group International, 2010-03-10
  13. Constant: Webster's Timeline History, 2001 by Icon Group International, 2010-03-10
  14. Constant: Webster's Timeline History, 1997 by Icon Group International, 2010-03-10

101. Experimental Mathematics: Table Of Contents: Volume 7
constant Mean Curvature Surfaces with Two Ends in Hyperbolic Space Wayne Rossman Katsunori Sato Abstract in Postscript or DVI
http://www.expmath.org/expmath/volumes/7/7.html
Home Table of Contents / Volume 7 For subscription or editorial inquiries, please contact us by email , telephone, or mail. A K Peters, Ltd.
888 Worcester Street
Suite 230
Wellesley, MA 02482
Tel: 781.416.2888 or 800.450.2210
Fax: 781.416.2889
http://www.akpeters.com/
Are characters missing or replaced by rectangles?
Experimental Mathematics
Volume 7 (1998)
Next Volume All Volumes Previous Volume
Volume 7, issue 1
David W. Boyd
Abstract in Postscript or DVI
Full text (Postscript)
Euler Sums and Contour Integral Representations
Philippe Flajolet
Bruno Salvy Abstract in Postscript or DVI Full text (Postscript) +b =c p Alain Kraus Abstract in Postscript or DVI Full text (Postscript)
Volume 7, issue 2
Embedding the 3x+1 Conjecture in a 3x+d Context Edward G. Belaga Maurice Mignotte Abstract in Postscript or DVI Full text (Postscript) Bounds for the Density of Abundant Integers Abstract in Postscript or DVI Full text (Postscript) The S Extensions of Degree 6 with Minimum Discriminant David Ford Michael Pohst Mario Daberkow Nasser Haddad Abstract in Postscript or DVI Full text (Postscript) Sur la courbe modulaire X Emmanuel Halberstadt Abstract in Postscript or DVI Full text (Postscript) Extended GCD and Hermite Normal Form Algorithms via Lattice Basis Reduction George Havas

102. CTC: Mathematics
Tables, Constants, and Definitions math Tables A collection of mathematical tables, theorems, and proofs, covering algebra to advanced calculus.
http://www.tc.cornell.edu/CTC-Main/Services/Education/Gateways/Math_and_Science/

Home
About Services Research ... Gateways
Mathematics
General Topics Anthony Beckwith's Website - Advanced Topics in Math Course (covers topology, knot theory, chaos theory, barcodes, number theory, and other interesting topics) Ask Dr. Math - Ask Dr. Math is a question and answer service for math students and their teachers. A searchable archive is available by level and topic, as well as summaries of Frequently Asked Questions (the Dr. Math FAQ).
Calculus Help
- A professor in the Department of Mathematics at the University of Hawaii, authored these notes to help students learn how to use, not just understand, the concepts of calculus. A total of fifteen topics are covered and include max-min problems, exponential growth, and the derivation of Kepler's second law.
Flash Cards for Kids
- This is an interactive flash card site. You can choose among addition, subtraction, multiplication, and division; simple or complicated problems; and how many digits the numbers will have. While this isn't exactly high school material, it's a nice site, so we're including it anyway. Enjoy, and show it to your kid sister or brother!
Graphics for the Calculus Classroom
- This is a collection of graphical demonstrations developed for first year calculus, but suitable and interesting for high school students as well. From Douglas Arnold at Penn State.

103. 5.6 Math -- Mathematical Functions
5.6 math mathematical functions. This module is always available. It provides access to the The module also defines two mathematical constants
http://www.python.org/doc/2.3.5/lib/module-math.html
Python Library Reference Previous: 5.5 test.test_support Up: 5. Miscellaneous Services Next: 5.7 cmath
math Mathematical functions
This module is always available. It provides access to the mathematical functions defined by the C standard. These functions cannot be used with complex numbers; use the functions of the same name from the cmath module if you require support for complex numbers. The distinction between functions which support complex numbers and those which don't is made since most users do not want to learn quite as much mathematics as required to understand complex numbers. Receiving an exception instead of a complex result allows earlier detection of the unexpected complex number used as a parameter, so that the programmer can determine how and why it was generated in the first place. The following functions are provided by this module. Except when explicitly noted otherwise, all return values are floats:
acos x
Return the arc cosine of x
asin x
Return the arc sine of x
atan x
Return the arc tangent of x
y, x

104. Mathsoft Constants - Mathcad Library
This website aims to show that there are many constants in mathematics other than just e and pi!
http://www.mathcad.com/library/Constants/

105. Math::constants
Here is the way you can do it with the mathconstants package package require mathconstants mathconstantsconstants radtodeg degtorad
http://tcllib.sourceforge.net/doc/constants.html
NAME SYNOPSIS DESCRIPTION PROCEDURES ... KEYWORDS Package: tcllib, Version: CVS HEAD
NAME
math::constants -
Mathematical and numerical constants
SYNOPSIS
package require Tcl ? 8.3 ? package require math::constants ::math::constants::constants args ::math::constants::print-constants args
DESCRIPTION
This package defines some common mathematical and numerical constants. By using the package you get consistent values for numbers like pi and ln(10). It defines two commands:
  • One for importing the constants One for reporting which constants are defined and what values they actually have.
The motivation for this package is that quite often, with (mathematical) computations, you need a good approximation to, say, the ratio of degrees to radians. You can, of course, define this like: and use the variable radtodeg whenever you need the conversion. This has two drawbacks:
  • You need to remember the proper formula or value and that is error-prone. Especially with the use of mathematical functions like atan you assume that they have been accurately implemented. This is seldom or never the case and for each platform you can get subtle differences.
Here is the way you can do it with the math::constants package: package require math::constants ::math::constants::constants radtodeg degtorad which creates two variables, radtodeg and (its reciprocal) degtorad in the calling namespace.

106. XML.com: Extending XSLT With EXSLT
In the first three, the mathconstant function gets the values of the named The first call to mathconstant above gets pi with 4 digits of precision,
http://www.xml.com/lpt/a/2005/01/05/tr-xml.html
Published on XML.com http://www.xml.com/pub/a/2005/01/05/tr-xml.html
See this
if you're having trouble printing code examples Extending XSLT with EXSLT
By
Bob DuCharme In an earlier column titled XSLT Extensions , I described how the Extensions section of the XSLT 1.0 Recommendation provides a way to identify the use of extensions to the XSLT 1.0 language. If your XSLT processor implements specialized new elements and functions, this gives your stylesheet a standard way to declare them and to check whether the processor in use implements them. The good news is that, for example, a Java programmer using a Java-based XSLT implementation can add and use customized XPath functions in his or her stylesheets. The bad news is that this customization can kill the stylesheet's portability across XSLT processors. Unless... some hardworking XSLT devotees coordinate a collection of extensions to be implemented the same way by different XSLT processors. In early 2001, Leigh Dodds wrote in XML.com about how Jeni Tennison, Uche Ogbuji, David Carlisle, and others laid the ground work for EXSLT , a "a community initiative to provide extensions to XSLT." They've led this community effort to define a wide variety of extension elements and functions, and many useful functions are implemented identically in three of my four favorite XSLT processors:

107. Welcome To TCEAP.co.uk: The Site For Constants And Equations
Over 600 alphabetically listed Constants, aspects of maths, some 450 equations,Additions Multiplication tables, Interactive conversions and details on all
http://www.scenta.co.uk/tcaep/
Search TCAEP
Welcome to TCAEP .co.uk
Science Maths Constants - Over alphabetically listed Topics - Explanations of the more common entries aspects of maths. Over links Equations - Some entries Number Conversions - Interactive log tables, metric prefixes and more conversion of over units Algebra - All the common algebraic SI Units - Details on all the standard SI units identities, including complex numbers of measurement Trigonometry - Identities Calculus - Integral and differential functions Symbols - Greek alphabet, electronic symbols and mathematical symbols Astronomy Planets - Details on all the currently known planets and their satellites Constellations - Table of constellations with info on 3164 stars - Times for 231 locations around the world Moon phases - Tables of moon phases for the next 20 years
If you have any problems with this site help can be found on the about page or you can contact us at editor@scenta.co.uk or alternatively call us on (+44) 0207470 4800
These pages make extensive use of XML There is a non-XML version of these pages available
For help with physics questions try www.physics.org

108. Re: [exslt] Math:constant() And Math:random() :: ASPN Mail Archive :: Exslt
ActiveState Open Source Programming tools for Perl Python XML xslt scripting with free trials. Quality development tools for programmers systems
http://aspn.activestate.com/ASPN/Mail/Message/exslt/1186259
Cookbooks Documentation Mailing Lists Modules ... Web Services in exslt all lists Perl lists Python lists PHP lists Tcl lists XSLT lists .NET lists Web Services lists all ASPN Products Recipes News Modules Mailing Lists The Perl Journal Reference advanced search help
Recent Messages

List Archives
...
Help

View by Topic
ActiveState

.NET Framework

Open Source

Perl
...
Web Services

View by Category Database General SOAP System Administration ... exslt exslt by David N Bertoni/Cambridge/IBM other posts by this author Apr 28 2002 6:08PM messages near this date Re: [exslt] xsl:import : error Thread: David N Bertoni/Cambridge/IBM Dimitre Novatchev Tell a Friend Email Opt-out ... Syndication

109. [exslt] Mathconstant() And Mathrandom()
Previous message exslt mathconstant() and mathrandom(); Next message exslt Randomizing a nodelist long (Was Re Extending xsltproc?
http://lists.fourthought.com/pipermail/exslt/2002-May/001490.html

110. [exslt] Mathconstant() And Mathrandom()
mathconstant() This function seems underspecified to me. For example mathconstant( PI , 2) would result in the string 3.
http://lists.fourthought.com/pipermail/exslt/2002-April/001475.html

Page 6     101-110 of 110    Back | 1  | 2  | 3  | 4  | 5  | 6 

free hit counter