String Definition and 1000 Threads
-
Introductory Books for Research in Bosonic String Theory
I am looking for introductiory books on gauge theory and conformalfield theory and polyakov integrals for research in Bosonic string theory. Any other material recommendations for String theory that are necessary for bosonic string theory or heterotic string theory are definelty apreciated. To...- moriheru
- Thread
- Books Introductory Research String String theory Theory
- Replies: 1
- Forum: Science and Math Textbooks
-
F
Tension in String between two blocks
Homework Statement Block 1, of mass m_1 =2.6kg and block 2 of mass m_2=1.4kg are connected by a massless string. Block 2 then experiences a force F=18N acting in the postivive x direction and at an angle of \theta = 38° . The coefficiant of kinetic friction between the floor and both of the...- FaraDazed
- Thread
- Blocks String Tension Tension in string Two blocks
- Replies: 9
- Forum: Introductory Physics Homework Help
-
A
Please help, conceptual motion of a transverse wave on a string question
I am losing my mind over this, it seems the longer i think about it the further i get from a definitive answer. It started with me trying to understand the variables the would result in a standing wave, ie: what needs to occur, why, and how it occurs. At first i was confused because it seemed... -
L
Solving for Acceleration of Mass on Cylinder w/ Frictionless String
Homework Statement [/B] A solid cylinder of mass m and radius r lies flat on frictionless horizontal table, with a massless string running halfway around it, as shown in Fig. 8.50. A mass also of mass m is attached to one end of the string, and you pull on the other end with a force T. The...- Latao Manh
- Thread
- Acceleration Classical mechanics Cylinder Frictionless Mass String Tension
- Replies: 6
- Forum: Introductory Physics Homework Help
-
Two Carts attached to a string
Homework Statement Two 0.400-kg carts are 100 mm apart on a low-friction track. You push one of the carts with a constant force of 2.0N directed so that the cart you push moves away from the other cart. Determine the acceleration of the center of mass of the two-cart system when the carts are...- B3NR4Y
- Thread
- Carts String
- Replies: 5
- Forum: Introductory Physics Homework Help
-
D
What Causes a Particle on a String to Return to the Origin in Wave Motion?
In my wave course at the moment we are looking at waves on a string and their applications. At one point we consider the transverse force at a particular point on the string due to a uniform tension throughout a string. Something about this has confused me, the force isn't at all in the form I...- Darren93
- Thread
- String Waves
- Replies: 1
- Forum: Other Physics Topics
-
T
Calculating Oscillation Frequency and Max Acceleration of a String
For the first part of the equation, I worked out k constant of a string which extended 12.6cm when a mass of 300g was suspended from it using the equation F = kx where F is the force applied and x its extension. So mg = xk, 300 x 9,81 = 0.126k, the answer was 23357N/m (23kN/m). The question...- Tangeton
- Thread
- Acceleration Frequency Max Oscillation String
- Replies: 1
- Forum: Introductory Physics Homework Help
-
S
Is Diffeomorphism on Target Space a Symmetry of Polyakov's Action?
The Polyakov action, S=\frac{1}{4\pi\alpha^\prime}\int d^2\sigma\sqrt{-h}h^{\alpha\beta}G_{ij}(X)\partial_\alpha X^i\partial_\beta X^j has the local symmetries, diffeomorphism on world sheet and the Weyl invariance. But is diffeomorphism on the target space also a symmetry? The target space...- synoe
- Thread
- Diffeomorphism Polyakov String Symmetry
- Replies: 1
- Forum: Beyond the Standard Models
-
A
Simple Harmonic Motion Guitar String Question
Homework Statement Question: "The midpoint of a guitar string oscillates with an amplitude of 2.24mm with a frequency of 400Hz. Calculate: i) The maximum speed at this point ii) The maximum acceleration of the string at this point" Homework Equations Suitable formulas: x=Asin(2*pi*f*t) ...- Apothem
- Thread
- Guitar Harmonic Harmonic motion Motion Simple harmonic motion String
- Replies: 4
- Forum: Introductory Physics Homework Help
-
B
Why are standing waves on a guitar string sinusoidal?
Ok I understand the idea that a standing wave can be represented as the sum of two traveling waves going in opposite directions with same stuff but what I don't understand is why the waves on a guitar string are sinusoidal. I mean I know looking at them, they look sinusoidal but could they be...- Bill Plates
- Thread
- Guitar Sinusoidal Standing waves String Waves
- Replies: 8
- Forum: Other Physics Topics
-
&
Does string theory need to start with our observable universe?
This will, no doubt, sound like a silly question but I am just getting my feet wet in string theory. It seems from what I know so far, that string theory is very far removed from our observable universe. What I mean by that statement is that it seems we just say "well, maybe our universe is a...- "pi"mp
- Thread
- String String theory Theory
- Replies: 5
- Forum: Beyond the Standard Models
-
T
Analyzing a Simple Pendulum: Length, Displacement, Velocity, and Restoring Force
Homework Statement A mass,m, hangs from a string and swings with a frequency of 0.8 Hz with a maximum displacement of 0.1 rad. The equation of motion is given by x=Acos(ωt). A) What is the length of the string? B) What is the maximum displacement of the mass in meters? C) What is the velocity...- toothpaste666
- Thread
- Mass String
- Replies: 7
- Forum: Introductory Physics Homework Help
-
T
What Is the Speed of Waves on a Guitar String?
Homework Statement A 65-cm guitar string is fixed at both ends. In the frequency range between 1.0 and 2.0 kHz, the string is found to resonate only at frequencies 1.2, 1.5, and 1.8kHz . What is the speed of traveling waves on this string? Homework Equations f = v/2l The Attempt at a...- toothpaste666
- Thread
- Guitar Speed String Wave
- Replies: 3
- Forum: Introductory Physics Homework Help
-
I
C/C++ C++: Replacing Characters in A String
Replace any space ' ' by '_' in 2-character string passCode. Sample program: #include #include #include using namespace std; int main() { string passCode; passCode = "1 "; <student code> cout << passCode << endl; return 0; } I'm super lost on this. I could...- ineedhelpnow
- Thread
- String
- Replies: 1
- Forum: Programming and Computer Science
-
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
-
I
C/C++ Detecting First Letter Match in C++ String with Substr Function
Write an expression to detect that the first character of userInput matches firstLetter. Sample program: #include <iostream> #include <string> using namespace std; int main() { string userInput; char firstLetter = '-'; userInput = "banana"; firstLetter = 'b'; if (<STUDENT...- ineedhelpnow
- Thread
- C++ String
- Replies: 5
- Forum: Programming and Computer Science
-
I
C/C++ C++ String Access Ops: Assign Size of UserInput
Assign the size of userInput to stringSize. Ex: if userInput = "Hello", output is: Size of userInput: 5Sample program: #include <iostream> #include <string> using namespace std; int main() { string userInput; int stringSize = 0; userInput = "Hello"; <STUDENT CODE> cout <<...- ineedhelpnow
- Thread
- C++ String
- Replies: 1
- Forum: Programming and Computer Science
-
String with mass pulling block up frictionless ramp
Homework Statement A block of mass M has a string of mass m attached to it. A force F is applied to the string and it pulls the block up a frictionless plane that is inclined at an angle theta. Find the force that the string exerts on the block Homework Equations F=ma The Attempt at a...- PsychonautQQ
- Thread
- Block Frictionless Mass Ramp String
- Replies: 2
- Forum: Introductory Physics Homework Help
-
I
C/C++ Two question on string access ops c++
Assign the size of userInput to stringSize. Ex: if userInput = "Hello", output is: Size of userInput: 5 Sample program: #include <iostream> #include <string> using namespace std; int main() { string userInput; int stringSize = 0; userInput = "Hello"; <STUDENT CODE> cout <<...- ineedhelpnow
- Thread
- C++ String
- Replies: 4
- Forum: Programming and Computer Science
-
I
C/C++ C++ String Compare: Alphabetize Strings
Print the two strings in alphabetical order. Assume the strings are lowercase. End with newline. Sample output: capes rabbits Sample program: #include <iostream> #include <string> using namespace std; int main() { string firstString; string secondString; firstString = "rabbits"...- ineedhelpnow
- Thread
- C++ Compare String
- Replies: 12
- Forum: Programming and Computer Science
-
C
High school string theory project
Hi, so I'm new to this forum and wanted to ask for some advice. I REALLY am interest in string theory and I've read around the topic a lot without actually learning about it. In my school we can do an independent study project or ISP. When students do ISPs they have to have a project that can be...- CC Richardson
- Thread
- High school Project School String String theory Theory
- Replies: 12
- Forum: Beyond the Standard Models
-
S
Two Blocks attached by a string, on an incline
Homework Statement In the diagram mA is equal to 3.00 kg and mB is equal to 1.07 kg. The angle of the inclined plane is 38.0° (a) Find Acceleration: 6.03 m/s^2 (got this part) (b) Find the tension Tb in the connecting string: Not sure Homework Equations (a) a = (F/mA + mB) (b) t =...- stripedcat
- Thread
- Blocks Incline String Two blocks
- Replies: 5
- Forum: Introductory Physics Homework Help
-
L
How do string waves pass through each other without interfereing?
From what I have learned so far a wave propogates on a string by having the point on the string (that is closest to the wave and in the direction the wave is moving) move upwards or downwards depending on the wave and this point moving due to tension causes the next to move simillarly and thus...- learning
- Thread
- String Waves
- Replies: 18
- Forum: Classical Physics
-
R
Determining the ratio of wave amplitudes along a string
Homework Statement A point mass M is concentrated at a point on a string of characteristic impedance ρc. A transverse wave of frequency ω moves in the positive x-direction and is partially reflected and transmitted at the mass. The boundary conditions are that the string displacements just to...- rmjmu507
- Thread
- Amplitudes Ratio String Wave
- Replies: 13
- Forum: Advanced Physics Homework Help
-
What are the issues with this code for reversing a string in memory?
Hi, I'm trying to write a simple program for reversing a string stored in memory. This is what I've come up with. For some reason this code coredumps, so something is wrong. any ideas ? #include <stdio.h> #include <string.h> #include <stdlib.h> char *reverse(char *buf,unsigned...- James889
- Thread
- Memory Reverse String
- Replies: 16
- Forum: Programming and Computer Science
-
J
Connection between particles a field in string theory
Im a trying to understand how the string entity relates to its underlying field. Is the field a brane and the string the partice?- jenst
- Thread
- Connection Field Particles String String theory Theory
- Replies: 5
- Forum: Beyond the Standard Models
-
C
Java Trying a String exercise in JAva
I am trying to capitalize the first letter of every word in a sentence. Example. "hey what's up" would be "Hey What's Up". here is my code but nothing is changing the sentence. I thought everything was right. public static String cap(String aString) { String[] sentence = aString.split("...- camel-man
- Thread
- Exercise Java String
- Replies: 2
- Forum: Programming and Computer Science
-
D
QFT & String Theory: "Particle First" vs "Field First
As Steven Weinberg put it, "the idea of quantum field theory is that quantum fields are the basic ingredients of the universe, and particles are just bundles of energy and momentum of the fields." At least, this is one way to look at QFT. The other approach is to imagine that these particles are...- dEdt
- Thread
- Qft String String theory Theory
- Replies: 5
- Forum: Beyond the Standard Models
-
D
Forces on a string applied perpendicular / tangent direction
Hello guys, I've had the following discussion at work: We are currently using a suture with a nylon thread on a tissue, when the thread of the suture is tightened in a force equal to if we've put a 500 gram weight on both ends of the suture line (meaning both end are tied together to the...- dislect
- Thread
- Applied Direction Forces Perpendicular String Tangent
- Replies: 3
- Forum: Classical Physics
-
Could transverse wave on a string could be used to produce sound?
I feel curious about why we pay so much attention on standing waves on the string. Doesn't transverse wave on the string can't be used to produce sound?- Jackson Lee
- Thread
- Sound String Transverse Transverse wave Wave
- Replies: 34
- Forum: Mechanics
-
F
Is there really no way to test string theory?
Here's an idea that I came up with. I've heard over and over again that there is no test yet available to confirm string theory. So what I say is... What if you could derive some fundamental physics equation from string theory principles? Then wouldn't that be a test so to speak...- Fellowroot
- Thread
- String String theory Test Theory
- Replies: 3
- Forum: Beyond the Standard Models
-
J
Find the Smallest Possible Tension in a Massless String Supporting a Disk
A disk of mass M and radius R is held up by a massless string. (The two ends of the string are connected to a ceiling and the disk rests on the bottom of the string.) The coefficient of friction between the disk is μ. What is the smallest possible tension in the string at its lowest point...- Jzhang27143
- Thread
- Disk String
- Replies: 3
- Forum: Classical Physics
-
Does plucking one point on the string really can cause standing wave?
I was teaching myself standing wave's chapter. It is said in the book that when plucking in the center of the string, it will cause two traveling waves of different directions, one left, one right. Then both of them will reach ends of string and invert back. Before they encounter at the center...- Jackson Lee
- Thread
- Cause Point Standing wave String Wave
- Replies: 4
- Forum: Other Physics Topics
-
B
Calculating Waves on a String: Answer Justification and Confusion Dispelled"
Hi all, I cannot seem to find a way to justify my book's answer to this problem: One end of a string is shaken each second sending a wave with an amplitude of 10cm toward the other end. The string is 5m long and wavelength of each wave is 50cm. How many waves reach the other end of the string...- bobrsanchez
- Thread
- String Wave
- Replies: 2
- Forum: Other Physics Topics
-
S
Low curvature effective action in string theory
String effective action: S=-\frac{1}{2\lambda_{\text{s}}^{d-1}}\int d^{d+1}x\sqrt{|g|}e^{-\phi}\left[R+(\nabla\phi)^2+2\lambda_{\text{s}}^{d-1}V(\phi)-\frac{1}{12}H^2\right]+S_m where H^2=H_{\mu\nu\alpha}H^{\mu\nu\alpha}\\ H_{\mu\nu\alpha}=\partial_\mu B_{\nu\alpha}+\partial_\nu...- synoe
- Thread
- Curvature Effective action String String theory Theory
- Replies: 1
- Forum: Beyond the Standard Models
-
W
String Theory Vs Loop Quantum Gravity
This is a question currently pondered by many Quantum physicists and theoretical physicists. I was just wondering how many of you prefer ST(string theory) as opposed to LQG(loop quantum gravity.) Please provide points and reasons regarding your answer. I will provide an opinion when a few...- WildHYDRA
- Thread
- Gravity Loop Loop quantum gravity Quantum Quantum gravity String String theory Theory
- Replies: 1
- Forum: Beyond the Standard Models
-
T
How to Express the Curve of a String Hung Between Two Columns
1. Imagine two columns between which is hung a string. The hung string may be expressed graphically and mathematically as a parabola whose nature is exponential. If these columns are moved closer together or farther apart, the hung string becomes more loose or taut according to a trigonometric...- techjumper
- Thread
- Columns Curve String
- Replies: 3
- Forum: Introductory Physics Homework Help
-
C
What Is the New Geometry of String/M-Theory?
I'm watching a lecture by Edward Witten here: In it, he mentions that String/M-theory seems to be hinting toward a new kind of geometry where you don't talk about space/time points, but the interactions between quantum world sheets (around 37:00 minute mark.) Does this new geometry have...- cuallito
- Thread
- Geometry String String theory Theory
- Replies: 4
- Forum: Beyond the Standard Models
-
MHB Cost of the conversion of a string to an other string
Hello! (Wave) We are given $2$ strings $A=[1 \dots m]$ and $B[1 \dots n]$ and the following $3$ operations are allowed: Insert a charachter,with cost $c_i$ Delete a character,with cost $c_d$ Replace a character,with cost $c_r$ We are looking for the optimal sequence of...- evinda
- Thread
- String
- Replies: 20
- Forum: Set Theory, Logic, Probability, Statistics
-
C
String Theory Review for Beginner Graduate Students
Hi, I've been looking for a string theory review for a beginner graduate student. However, there is a vast number of reviews so it's easy to get lost. Does anyone know about a review article or any kind of material to begin with String Theory? Thanks.- Casco
- Thread
- Review String String theory Theory
- Replies: 7
- Forum: Beyond the Standard Models
-
Magnetic monopoles, fine structure and String theory
Hello, Can anybody please explain me how magnetic monopoles, fine structure constant and string theory are related to each other? Thanks- shounakbhatta
- Thread
- Magnetic Magnetic monopoles String String theory Structure Theory
- Replies: 6
- Forum: Beyond the Standard Models
-
2
What is the tension in a pendulum string?
Homework Statement Hi all! I was wondering what the tension is in the string of a pendulum, because I think sparknotes is wrong on this. Sparknotes says that: "Choose a coordinate system: We want to calculate the forces acting on the pendulum at any given point in its trajectory. It will...- 21joanna12
- Thread
- Pendulum String Tension
- Replies: 2
- Forum: Introductory Physics Homework Help
-
L
An object suspended by a spool of string. (Angular momentum problem)
Homework Statement An object with a mass of m = 4.80 kg is attached to the end of a string wrapped around a reel of radius R = 0.230 m and mass M = 3.00 kg. The reel is a solid disc. The suspended object is released from rest 1.90 m above the floor. http://imgur.com/ElfqPSX a) Determine the...- letsfailsafe
- Thread
- Momentum String
- Replies: 1
- Forum: Introductory Physics Homework Help
-
A
What is the meaning of this String Theory Equation from CERN?
I have recently visited CERN, and in the Globe they showed an equation from string theory. My knowledge about it goes only as far as 'The elegant universe', so no mathematics, but i would say that the sketch beneath is about the string coupling constant. Could anyone please explain the...- Aaronaut
- Thread
- Cern String String theory Theory
- Replies: 1
- Forum: Beyond the Standard Models
-
String reversal using recursion
Homework Statement Write a function called reverse that uses recursion to reverse any one-dimensional string array.Homework Equations The Attempt at a Solution function out = reverse(str) if length(str) == 0 out = str; else out = [str(end) reverse(str(1:end-1))]; end I am having...- gfd43tg
- Thread
- Recursion String
- Replies: 8
- Forum: Engineering and Comp Sci Homework Help
-
S
Fundamental note vs fundamental frequency of string
Homework Statement A guitr player changes the frequncy of the note produced by a guitar string by pressing his fingers along the string. The fundamental frequency of the string is 264hz. What are the frquncies of the fundamental note if the player plucked the string at 1/4 of the way from one...- somecelxis
- Thread
- Frequency Fundamental Fundamental frequency String
- Replies: 31
- Forum: Introductory Physics Homework Help
-
A
MHB Optimizing Area for two shapes using a single piece of string
Hey guys, I would really appreciate some help for this question I'm stuck on at the moment: "A piece of 2 m long wire is to be cut into two pieces one of which is to be formed into a circle and the other into an equilateral triangle. How should the wire be cut so that the total area enclosed... -
S
Frequency of string and tuning fork
Homework Statement can someone teach me on this question? i really don't know how to start with it. the ans is 0.38m and 4.1N Homework Equations The Attempt at a Solution the working is in the second photo- somecelxis
- Thread
- Frequency String Tuning Tuning fork
- Replies: 8
- Forum: Introductory Physics Homework Help
-
N
Are the strings in string theory vacuums?
I've heard that the strings in String theory are vacuums, is that right? And if so then how is it expected they form?- Natsirt
- Thread
- String String theory Strings Theory
- Replies: 2
- Forum: Beyond the Standard Models
-
N
Do the strings in String theory get energy to vibrate from Higgs?
Just as particles move through the theoretical Higgs field and gain energy which gives them mass, do the strings in String theory get their energy to vibrate from the Higgs Field as well? And does that mean that the Strings have mass?- Natsirt
- Thread
- Energy Higgs Higgs boson String String theory Strings Theory
- Replies: 11
- Forum: Beyond the Standard Models