Solving a quadratic Lagrange interpolant , How ?

AI Thread Summary
The discussion centers on solving a problem using MATLAB, specifically regarding the calculation of coefficients for a quadratic equation based on given velocity values at specific time intervals. The user attempts to derive coefficients a0, a1, and a2 from three equations based on velocity data at times 15, 18, and 22 seconds. They express the equations in matrix form and calculate the coefficients, but the results do not match the expected output for a specific time (16 seconds), leading to confusion about the correctness of their approach. The user is seeking assistance to identify the mistake in their calculations, particularly regarding the expected velocity at time 16 seconds and whether multiple answers should be considered for different intervals. The urgency of the situation is emphasized as the submission deadline approaches.
uaeXuae
Messages
54
Reaction score
0
http://img151.imageshack.us/img151/5562/updatequicklyte1.jpg



how would i solve it using MATLAB ? I tried many times but i didnt get the same answer may anyone help me please ?
 
Last edited by a moderator:
Technology news on Phys.org
Anyone please ? I have to submit this in 2 days please help...


My attempt is as follows

v(15)=a0+a1(t)+a2(t)=24
a0+a1(15)+a2(15)^2=24


v(18)=a0+a1(t)+a2(t)=37
a0+a1(18)+a2(18)^2=37

v(22)=a0+a1(t)+a2(t)=25
a0+a1(22)+a2(22)^2=25


I then wrote it in the Matrix Form

a=[1 15 225;1 18 324;1 22 484]
b=[24;27;35]
x=a/b

Results:

a0=-323.8571
a1=38.9048
a2=-1.0476


Using the following Equation:

v(16)=-323.8571+(38.9048*16)+(-1.0476*(16^2))=
30.4341 s which is wrong ofcourse The ans is 20.846 so wheres my mistake
 
The value 26m/s is obtained twice

First interval: 15 -18
Second Interval: 18-22

So i should be getting two answers is that so ?
 
Anyone please help me submission is tommrow
 
Thread 'Is this public key encryption?'
I've tried to intuit public key encryption but never quite managed. But this seems to wrap it up in a bow. This seems to be a very elegant way of transmitting a message publicly that only the sender and receiver can decipher. Is this how PKE works? No, it cant be. In the above case, the requester knows the target's "secret" key - because they have his ID, and therefore knows his birthdate.
Back
Top