we want the sum of n terms in sine series when we input n=5 only two terms are considered in sum of sin series but as per question there should be the sum of five terms. Although there is not any difference in the answer due to very small value is added as series goes on increasing we can correct code by correcting for loop as for(i=3;i
you all probably dont give a damn but does anyone know a tool to get back into an instagram account? I somehow forgot my account password. I would appreciate any assistance you can give me.
@Nasir Willie i really appreciate your reply. I got to the site on google and Im in the hacking process atm. Takes a while so I will reply here later with my results.
I did with a bit different approach...still your one is the efficient one with less time complexity than mine.....one question mam..the cmath library consists of sine ,hyperbolic functions itself... So the answer of these expansions can come in a single step...
Very well explained!. Was just wondering is this Mclaurin series? If you can make a video of how to calculate sin, cos and tan altogether. And this is within Maclaurin series. Where n is a Bernoulli number . Will appreciate your video on this
Expansion of cos x is given as: cos x = 1-x^2/2!+x^4/4!............. So for loop will start from 2 instead of 3 and initial value of x is equal to x instead of (x*3.14/180). I hope this rely will be helpful. If you want further explanation let me know.
int n; float x,sum = 0; printf("Enter value to X in Degrees : "); scanf("%f",&x); x = x * 3.14 / 180; printf("Enter a value to N as a power : "); scanf("%d",&n); for (int i = 1, d = 1, p = 1; i
@@dhanashreekangane5661 On entering any value its showing the output as zero. Previously I did the same program but in a different way, by taking the general term of the series and it was working fine. But my teacher asked me to show the series along with it also, so I did some modification and moreover my previous code was too long as well.So I erased the calculation part and incorporated yours. On compilation Errors =0; Warnings = 0.🤷🏻♂️
Nice and easy explanation
we want the sum of n terms in sine series when we input n=5 only two terms are considered in sum of sin series but as per question there should be the sum of five terms. Although there is not any difference in the answer due to very small value is added as series goes on increasing
we can correct code by correcting for loop as for(i=3;i
I have done few code now.but I understand allott . great explanation
No. I am not using Recursion here.
Recursion means calling same function from function itself.
Pleass teach recursion
nice concept to explain the question in this way
-love from Bihar
you all probably dont give a damn but does anyone know a tool to get back into an instagram account?
I somehow forgot my account password. I would appreciate any assistance you can give me.
@Moises Edwin Instablaster :)
@Nasir Willie i really appreciate your reply. I got to the site on google and Im in the hacking process atm.
Takes a while so I will reply here later with my results.
@Nasir Willie it worked and I now got access to my account again. I am so happy!
Thanks so much you really help me out!
@Moises Edwin Happy to help :D
Nice explanation mam
Excellent work mam
mam u r really amazing...thanks for this lecture
very nice explanation mam. thank you.
Great legendary explanation
I did with a bit different approach...still your one is the efficient one with less time complexity than mine.....one question mam..the cmath library consists of sine ,hyperbolic functions itself... So the answer of these expansions can come in a single step...
Thank you very much. You are a genius. 👍👍🔝🔝
Good For KTU Students .Thanks
beautifully explained
Great explaination...
Im getting a minute error at the four decimal digit as 2 instead of 4 in my result . The expected answer is 0.4794 but im getting 0.4792
Very well explained!.
Was just wondering is this Mclaurin series?
If you can make a video of how to calculate sin, cos and tan altogether. And this is within Maclaurin series. Where n is a Bernoulli number .
Will appreciate your video on this
Thanku so much ma'am
Love from bihar ❤️
Could u please make a video on
Write a c program to separate even and odd integer in a given range.write the output in file?
..
ruclips.net/video/twytLEiaCSQ/видео.html
good explanation
It's a great explanation. if I am not asking for more could you please explain it for the tan series ma'am
but what about no. of terms? the user enters 5 as no. of terms. if you increment i by 2 than I think there will be only 1 term calculated.
Total 3 terms will be calculated
What is the way for make the development limit of cos
Expansion of cos x is given as: cos x = 1-x^2/2!+x^4/4!............. So for loop will start from 2 instead of 3 and initial value of x is equal to x instead of (x*3.14/180). I hope this rely will be helpful. If you want further explanation let me know.
What about cos
Thank you
Take love💙
Mam mujhe c++ nhi aati kaise karu me aap bta sakti h kya..? 😓
Mam if we keep n=4 it is not showing the same value for both library function and Taylor value...
I am getting output for n=4. May I know what is exact error ?
doubt:- when the loop will false (line no 21) as u said it will repeated until it’s false.
What value we have to give for false .
When value of i is greater than n
Mam aap puri c language sikhnae wali ho kya??
int n; float x,sum = 0;
printf("Enter value to X in Degrees : ");
scanf("%f",&x);
x = x * 3.14 / 180;
printf("Enter a value to N as a power : ");
scanf("%d",&n);
for (int i = 1, d = 1, p = 1; i
Yes, Thanks for input. Code can be written in many ways
Tq
Thankuuuuu
thank you
can anybody plz send source code in this video?
What is value of n?
n can be any integer value taken from user
Plz ek saaf saaf vodeo bnaye plZ
Clear kuch b nhi dekh rha
Not at all working
May I know the error?
@@dhanashreekangane5661 On entering any value its showing the output as zero. Previously I did the same program but in a different way, by taking the general term of the series and it was working fine. But my teacher asked me to show the series along with it also, so I did some modification and moreover my previous code was too long as well.So I erased the calculation part and incorporated yours.
On compilation Errors =0; Warnings = 0.🤷🏻♂️
@@thetravellingengineer3735 i hope you are not starting for loop from 0