Numeric Definition and 41 Threads
-
E
I Numerical Solution of Complex Systems in GR
Please help me confirm that I understand this correctly. Imagine a system comprised of two black holes orbiting each other, which will eventually merge. At any point in time we describe the stress-energy tensor of the system. Assume that we could solve the EFE's for every point (t,x,y,z). This...- epovo
- Thread
- Complex Gr Numeric Systems
- Replies: 5
- Forum: Special and General Relativity
-
H
Solving an Electrical Engineering Challenge with a Tank of Electrolyte Liquid
So I am working on a project where I have a tank, which has a volume of electrolyte liquid inside it. This is coupled to a battery which charges it, and gives it energy. I will have a copperband arround it, so i can measure a potential voltage from the electrical field. So what I need to...- Hraabo
- Thread
- Analytical Challenge Electrical Electrical engineering Engineering Engineering academics Liquid Numeric Tank
- Replies: 5
- Forum: Electrical Engineering
-
T
A Numerically Solving Scalar Propagation in Curved Spacetime
Hey everybody, Background: I'm currently working on a toy model for my master thesis, the massless Klein-Gordon equation in a rotating static Kerr-Schild metric. The partial differential equations are (see http://arxiv.org/abs/1705.01071, equation 27, with V'=0): $$ \partial_t\phi =...- Tom O
- Thread
- Field Klein gordon equation Numeric Pde Propagation Scalar Scalar field Spacetime
- Replies: 1
- Forum: Special and General Relativity
-
S
Numerical integration - Gauss Lobatto
Homework Statement I need calculate the points (##x_i##) and weights (##w_i##) with Gauss Lobatto seven points on the interval [a,b]. With the points and the weights I am going to approximate any integral at this interval.Homework Equations I have found the relevant points and weights at the...- Sofie RK
- Thread
- Gauss Integration Numeric Numerical Numerical approximation Numerical integration
- Replies: 2
- Forum: Calculus and Beyond Homework Help
-
A
I Unable to show the radius of convergence of a numeric series
Hi, I've computed 512 terms of a power series numerically. Below are the first 20 terms. $$ \begin{align*} w(z)&=0.182456 -0.00505418 z+0.323581 z^2-0.708205 z^3-0.861668 z^4+0.83326 z^5+0.994182 z^6 \\ &-1.18398 z^7-0.849919 z^8+2.58123 z^9-0.487307 z^{10}-7.57713 z^{11}+3.91376 z^{12}\\... -
R
I Numeric impact of constraints on sets (passwords)
Hi folks, I've got everything I need to write a paper on the effect of constraints on passwords... except the math. I actually could write it, but the math would make it much meatier. Here is what I know about math. If the answer to a math problem is obvious, it is probably wrong. If the...- Randy_Abrams
- Thread
- Constraints Impact Numeric Sets
- Replies: 1
- Forum: Set Theory, Logic, Probability, Statistics
-
M
A Error for perturbed solution vs Numeric
Hi PF! I'm solving an PDE where the analytic solution is called ##F(x)## (unknown). To approximate the analytic solution I made a naive expansion in some small parameter ##\epsilon## such that ##F(x) = f_0(x)+\epsilon f_1(x)+O(\epsilon^2)##, where I know ##f_0(x)## and ##f_1(x)##. I then...- member 428835
- Thread
- Error Numeric
- Replies: 3
- Forum: Calculus
-
Solving differential equations using numeric methods
Hello, I have been working on a little movement system in a program called Game Maker: studio. The code works fine on the programming perspective, but something I did not expect happened: When I ran the code by adding to the speed while pressing a key, and every step passively subtracting from...- DarkBabylon
- Thread
- Differential Differential equations Numeric
- Replies: 2
- Forum: Programming and Computer Science
-
C
Discrete Lagrangian Homework: Minimize S, Find EoM's & Discrete Trajectory
Homework Statement In this exercise, we are given a discrete Lagrangian which looks like this: http://imgur.com/TL0P61r. We have to minimize the discrete S with fixed point r_i and r_f and find the the discrete equations of motions. In the second part we should derive a discrete trajectory for...- Christoffelsymbol100
- Thread
- Discrete Lagrange Lagrangian Mechanics Numeric
- Replies: 4
- Forum: Advanced Physics Homework Help
-
M
Looking for a numeric classical mechanics problem for project
Homework Statement I was recently assigned an assignment where my instructor told us to come up with an idea for a numeric classical mechanics problem that is solved by computer methods. Some ideas the instructor gave was to simulate motion of a sun-earth-moon system or simulate the tides of a...- Mike Garlow
- Thread
- Classical Classical mechanics Computer Mechanics Numeric Project Simulation Theoretical physicist
- Replies: 1
- Forum: Advanced Physics Homework Help
-
N
C/C++ C++ - Determining If A String Contains Any Numeric Digits
Set hasDigit to true if the 3-character passCode contains a digit. #include <iostream> #include <string> #include <cctype> using namespace std; int main() { bool hasDigit = false; string passCode; int valid = 0; passCode = "abc"; if (hasDigit) { cout << "Has a digit." << endl; }...- needOfHelpCMath
- Thread
- C++ Numeric String
- Replies: 4
- Forum: Programming and Computer Science
-
E
Project idea in Numeric Analysis
hey, need an idea for a paper on differential equations, which can be implemented in two or three days work. also it will be nice if that paper has graphs on it. any help would be most welcome thx- extrayet
- Thread
- Analysis Differential equation Idea Numeric Numerical analysis Project Project ideas
- Replies: 1
- Forum: STEM Academic Advising
-
S
'Operand type clash: numeric is incompatible with uniqueiden
Could use some help figuring out the error Operand type clash: numeric is incompatible with uniqueidentifier which points to the specified line below CREATE PROCEDURE AddPartner @name NVARCHAR(50), @email NVARCHAR(254), @new_guid UNIQUEIDENTIFIER OUTPUT AS BEGIN SET NOCOUNT ON...- SlurrerOfSpeech
- Thread
- Database Numeric Sql Type
- Replies: 1
- Forum: Programming and Computer Science
-
Elliptic partial differential equation
Hey guys, so my professor told me to take a look at an equation, because he thinks that there is a mistake. We are basically talking about exercise 6.3 (on last image). The pictures will show you the text, so that you have all the information, that I have http://puu.sh/mrNDl/ec19cdff63.png...- ATY
- Thread
- Computational Diff eq Differential Differential equation Numeric Partial
- Replies: 1
- Forum: Calculus and Beyond Homework Help
-
P
Excel vba button to clear numeric content
I want to clear numeric content(without clear others) in certain range with a button. example: $E$10:$H$26 and $K$11:$Z$15. What macro code should I have? Appreciate your help- phyky
- Thread
- Excel Numeric
- Replies: 1
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
I
C/C++ C++: Determining If a String Contains A Numeric Digit
Set hadDigit to true if the 3-character passCode contains a digit. Sample program: #include #include #include using namespace std; int main() { bool hasDigit = false; string passCode; int valid = 0; passCode = "abc"; <student code> if (hasDigit) { cout << "Has a...- ineedhelpnow
- Thread
- Numeric String
- Replies: 2
- Forum: Programming and Computer Science
-
Calculators TI-89 - how to delete equation on numeric solver?
The topic says it all. I am trying to figure out how to delete unwanted equations out of my TI-89 "numeric solver" app. I consulted the manual...nothing. I have googled and youtubed...nothing. Any help here would be great as I love the numeric solver app but it is becoming hard to find the right...- LTME
- Thread
- Delete Numeric Ti-89
- Replies: 8
- Forum: Computing and Technology
-
L
Fortran Solving a system of equations with numeric variables - Fortran
Hello, I've been trying to solve a system of equations but I'm getting a lot of troubles when I tried to insert inside a matrix a numeric variable. This is my code. I've tried both schemes, i.e., (1) introducing all elements of the matrix by hand (real numbers) and (2) introducing numeric...- leogt11
- Thread
- Fortran Numeric System System of equations Variables
- Replies: 6
- Forum: Programming and Computer Science
-
Q
MATLAB Solve Numeric Expressions in MATLAB
dear friends when I run my code in MATLAB , some expressions like: "8763559185889905/20769187434139310514121985316880384" appear in my result, so if I want MATLAB to give the numerical value of these sentences, what shouls I type? for example in mathematica I know that I must write ...- quin
- Thread
- Matlab Numeric Value
- Replies: 1
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
MHB How Does the Order of Convergence Relate to Numerical Schemes for ODEs?
A while back, I dug out a topic I worked on many years ago after taking a course in ordinary differential equations and I was left with an unanswered question, which I thought I would post here. While my question arose from studying numeric methods for approximating the solutions to ODEs, I feel...- MarkFL
- Thread
- Convergence Numeric
- Replies: 3
- Forum: Topology and Analysis
-
S
Python Can Python handle numeric integration with exponential functions?
I'm trying to write a python program that is able to numerically execute functions of the form: y(t) = exp(Integrate[A(x),x]) within the bounds of 0 and t I tried using quad from scipy.integrate but it seems not to be able to evaluate expressions of this form. Any other suggestions on...- sola maths
- Thread
- Integration Numeric Python
- Replies: 4
- Forum: Programming and Computer Science
-
N
Solving a Numeric Matrix Puzzle: Get All Combinations!
Hi, I am searching for a smart way of calculating all numbers in a special matrix kind of game. The game board consist of numbers between 1 and 9 in a 4x4 matrix. Swiping over numbers will either add up (swiping left or right), subtract (swiping up or down) or do nothing (diagonal...- najken
- Thread
- Combinations Matrix Numeric Puzzle
- Replies: 5
- Forum: General Math
-
J
Mathematica Mathematica: Printing Numeric Result
Hey, So I am fairly new to Mathematica (and the physics forums too). I am having a problem with mathematica not calculating the numeric result to an very complex integral. My question is, how do I force it to evaluate the integral as a number? I'm assuming that the integral of a square root...- Joel_662
- Thread
- Mathematica Numeric Printing
- Replies: 1
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
U
Solve Nonlinear Stiff ODE in Mathematica (NDSolve)
Hello, I'm trying to (numerically) solve the equation y''*y=-0.5*y'^2 in Mathematica. I know there's an analytic solution (and I know how to calculate it), but I want to modify this equation and thus need to verify that the numerical solution for the original equation is exact. I'm using...- Udi
- Thread
- Mathematica Nonlinear Numeric Ode
- Replies: 5
- Forum: Differential Equations
-
M
Discover the Numeric Value of Y without a Calculator - Easy Methods!
Numeric value of y. y = 2.3*105+6.1*106+3.2*107 Without calculator, how? '-'- MatheusMkalo
- Thread
- Numeric Value
- Replies: 4
- Forum: Precalculus Mathematics Homework Help
-
N
EureKalc, a symbolic and numeric calculator for Mac OS X
Hello, EureKalc 3 is an environment for numeric and symbolic calculation, dedicated to solving problems in the field of physics and engineering... It's a free and opensource MathCad like application running on Mac OSX. I developed it primarily for solving physics problems at the level of...- nicohirtt
- Thread
- Calculator Mac Numeric Os
- Replies: 1
- Forum: Computing and Technology
-
A
Matrix equation - numeric solving
Hello, my problem is to numerically count "lambda" from that kind of equation: (\lambda ^2 \check{A} + \lambda \check{B} + \check{C}) \vec{v}=0 which means that: det(\lambda ^2 \check{A} + \lambda \check{B} + \check{C})=0 where A, B and C are n x n matrices, v is unknown vector and "lambda" is...- Anthus
- Thread
- Matrix Numeric
- Replies: 2
- Forum: Linear and Abstract Algebra
-
D
Numeric result for an integral solution to pi
Homework Statement I am posting for my son, who needs the full readout for a formula, more than what a small graphing calculator can do. Is there such a program for that? Am I in the right place to get an answer for this? I would appreciate any help in this for my mathmatical skills are...- Danimel
- Thread
- Integral Numeric Pi
- Replies: 7
- Forum: Precalculus Mathematics Homework Help
-
D
Integral solution to pi numeric result
I am posting for my son, who needs the full readout for a formula, more than what a small graphing calculator can do. Is there such a program for that? Am I in the right place to get an answer for this? I need the numeric result of "2 times the inverted sign of 1 minus the inverted sign of...- Danimel
- Thread
- Integral Numeric Pi
- Replies: 7
- Forum: Linear and Abstract Algebra
-
S
MATLAB Simulating RC Low Pass Filter Using MATLAB: Symbolic to Numeric Conversion
hey, I'm trying to use MATLAB to simulate a simple RC low pass filter. I have an array of data that represents the signal I want to filter, and I have the s-domain representation of the filter circuit. I'm pretty new to this type of analysis, but I'm pretty sure I should be taking the fft...- sinusance
- Thread
- Matlab Numeric
- Replies: 2
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
E
Many-Body Numeric Integration Algorithm
That is to say, how does one go about it for a non-separable partial differential equation? Let me preface by saying that I am not asking for an answer of perturbation theory, variational theory, mean-field theory, or some sort of self-consistent guess-and-check method (i.e., coupled...- Enjolras1789
- Thread
- Algorithm Integration Numeric
- Replies: 1
- Forum: Differential Equations
-
C
Why isn't the numeric keypad working in Windows XP?
I'm trying to fix a problem with a computer system and I'm not sure where to go next. My office manager said that her numeric keypad wasn't working, though the keyboard was otherwise fine. I replaced her keyboard but to no effect: the new keyboard worked fine except for the numeric keypad...- CRGreathouse
- Thread
- Broken Numeric
- Replies: 1
- Forum: Computing and Technology
-
U
Any decent keyboard without numeric pad?
Full-size keyboards take too much space when you're on a small desk. But a minimal keyboard that I got turned out to be cap, I ended up making more typos and was unable to type fast. So does anyone know of a decent small-size keyboard? With standard-depth, decent keys like those of a normal...- Ulysees
- Thread
- Keyboard Numeric
- Replies: 7
- Forum: Computing and Technology
-
L
Lifting line theory numeric estimation
hi, i am in the final yr aerospace engg...i am trying to write a program on MATLAB to calculate the lift distribution over a wing using the numerical estimation based on the classic(prandtl) lifting line theory...however, due to my relatively limited exposure to MATLAB i am having trouble...- lnpsivan
- Thread
- Estimation Lifting Line Numeric Theory
- Replies: 20
- Forum: Mechanical Engineering
-
M
Two slides have different angles, find the numeric angle
In a playground, two slides have different angles of incline theta1 and theta2 (theta2 > theta1). A child slides down the first at constant speed; on the second, his acceleration down the slide is a. Assume the coefficient of kinetic friction is the same for both slides. (a) Find a in terms of...- mikefitz
- Thread
- Angle Angles Numeric
- Replies: 1
- Forum: Introductory Physics Homework Help
-
H
Java Java Numeric Computing: Performance Discussion
the purpose of this thread is to be a placeholder for discussion about the performance of Java in Numerical Computations. Started as a discussion between CRGreathouse and me about weather or not Java can be used effectively in doing computations. The plan we have: Phase 1: Solve a...- haki
- Thread
- Computing Java Numeric
- Replies: 17
- Forum: Programming and Computer Science
-
B
Numeric algorithm (of projectile motion with drag)
Using the suggested algorithm steps of the University Physics extra http://wps.aw.com/wps/media/objects/877/898586/topics/topic01.pdf" I want to make Maple (ver. 10) output values for coordinates, speeds and accelerations (as described in the linked PDF). I've reached the 5th step, which is...- Bonulo
- Thread
- Algorithm Drag Motion Numeric Projectile Projectile motion
- Replies: 1
- Forum: Advanced Physics Homework Help
-
A
How to set up probability of numeric recurrence in lottery
Hi, It has been a long time, and I do not remember how to set up a probability calculation with the following variables - take a lottery that draws 12 numbers, values 0-9 only, from a hopper that replaces the number after it is drawn, i.e. probability of each number appearing remains...- ArfDogXYZ
- Thread
- lottery Numeric Probability Recurrence Set
- Replies: 1
- Forum: Precalculus Mathematics Homework Help
-
R
Solve the Numeric Nonsense: What's Next?
What's the next entry? And why? 1 11 21 1211 111221- Rahmuss
- Thread
- Numeric
- Replies: 2
- Forum: General Discussion
-
Finding the Largest Numeric Value in an Array: A Perl Solution
How do you return the largest numeric value in an array, in Perl?- Monique
- Thread
- Array Numeric Value
- Replies: 6
- Forum: Computing and Technology
-
K
Numeric precision with iterative matrix rotations
I couldn't find a forum section on numerical analysis, so I'm writing this here. I'm on the lookout for simple matrix rotation/multiplication methods that can overcome the precision problems associated with poorly conditioned matrices. In my case I'm trying to simulate the rotational...- Kludgy
- Thread
- Iterative Matrix Numeric Precision Rotations
- Replies: 5
- Forum: Computing and Technology