math module in Python | Mathematical functions in Python | CBSE Class 11 and 12 Computer Science

  Рет қаралды 42,397

Swati Chawla

Swati Chawla

Күн бұрын

Пікірлер: 95
@tmaskff491
@tmaskff491 Жыл бұрын
0:58 start 2:19 sqrt 4:22 ceil & floor 8:10 pow 11:21 fabs 13:20 degree 14:59 pi & e 16:55 sin,cos,tan
@PulsePunch
@PulsePunch 3 жыл бұрын
Ma'am I am very happy to got this channel for cs
@SwatiChawlaofficial
@SwatiChawlaofficial 3 жыл бұрын
Glad to hear this.. Thanku so much 🙏🏻 Plz share it with others too
@bharathisams2927
@bharathisams2927 Ай бұрын
Im not understand your language. But I understood very clear your concepts via video examples. Thanks a lot Mam.
@SwatiChawlaofficial
@SwatiChawlaofficial Ай бұрын
Thanks and Welcome
@ashutoshempire2880
@ashutoshempire2880 3 жыл бұрын
Please someone give Physics Wallah sir the information about this channel....So he could also open classes for Computer Science....with Swati mam in collaboration and the other teacher Sumit Bisht from Edutainment.... I am eager to see such collaboration..
@rudrashiva9290
@rudrashiva9290 2 жыл бұрын
Yes bot are fabulous. I like his notes and mam s live presentation.
@aks_technical
@aks_technical Жыл бұрын
# python math module :- it contains the different types of mathematical funtion most # of the function in this module returns a float value. import math # it return the square root of x for x> o # x may be possative integer or negative number floating point number x = math.sqrt(144) print(x) # conver the decimal number of the sqr y = math.sqrt(142) print(y) # python does not support negative value # z = math.sqrt(-96) # python doesnot support negative number # print(z) mn = math.sqrt(0) print(mn) # ceils (x) # it return the smallest integer not less than x # x may be an integer or floating point number bn = math.ceil(2.35) print(bn) bc = math.ceil(2.1) print(bc) vb = math.ceil(2) # possative integer number print(vb) # negative integer number bn = math.ceil(-2.9) print(bn) # floor (x) vbn = math.floor(2.6) print(vbn) print("------------------------") # negaive number negi = math.floor(-5.6) print(negi) # pow (x,y) # it return the value of x^y (x raise to power y) # x, y may be possative or negative floating numbers pa = pow(2,5) # 2^5 this is an integer number print(pa) print("++++++++++++++++++++") pq = pow(2,4) print(pq) # you can find value of power in farcational value frac = pow(2.5,6.3) print(frac) # diffrence between pow() method and math.pow() method print("++++++++++++++++++++++++") x = pow(5,5,3) print(x) # find the value of abslute value xxy = abs(-96625252) #abs function give possative number print(xxy) # out put is 96625252 print("[[[[[[[[[[[[[[[[[[[[[[[[[[[[]]]]]]]]]]]]]]]]]]]]]]]]]]]]") xxx = abs(96.325632) print(xxx) # fabs function give the floating point number yyy = math.fabs(45) # import math function then fabs function work properly and print(yyy) # out is 45.0 hhhh = math.fabs(-96969) print(hhhh) # degree (x) # it converts the angle is x from radians to degrees # x must be a numeric value d = math.degrees(3) print(d) # out put is 171.887333924697 dd = math.degrees(-3) # gives a negative value print(dd) zero = math.degrees(0) print(zero) print("9090900000000000000000000000009") ninezero = math.degrees(90) # find degrees value print(ninezero) # find the radians value r = math.radians(5156.620156177409) print(r) rrr = math.radians(3) print(rrr) print("rrrrrrrrrrrrrrrr") rrrr = math.radians(-3) print(rrrr) print("bbbbbbbbbbbbbbbbbbb") zero = math.radians(0) print(zero) # find the pi value in python p = math.pi print(p) print("piippppppppppp") pp = math.e print(pp)
@amarhariyapelasriti9384
@amarhariyapelasriti9384 Жыл бұрын
And you can explain very well,even i don,t understand programming, when i see your vedio now i understand python
@SwatiChawlaofficial
@SwatiChawlaofficial Жыл бұрын
Thanku so much... Keep Watching
@amarhariyapelasriti9384
@amarhariyapelasriti9384 Жыл бұрын
I have never seen such a beautiful video on Python program. Thank you very much
@SwatiChawlaofficial
@SwatiChawlaofficial Жыл бұрын
Thanks and Welcome
@tamsilakhtar
@tamsilakhtar 2 жыл бұрын
One of the best teacher I found In You tube thanks mam to help me in exam 💖💖
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
Thanks and Welcome
@palakchauhan3871
@palakchauhan3871 2 жыл бұрын
I wish I could give you thousand likes.... I was just too much confused about this and you made it crystal clear to me.. ❤️
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
Thanku
@sarahmarytraker5612
@sarahmarytraker5612 Жыл бұрын
Really you r such an amazing computer teacher . you always make us easy to understand the topics especially by doing practical for us .♥
@SwatiChawlaofficial
@SwatiChawlaofficial Жыл бұрын
Thanks a ton
@kartik-gp3dp
@kartik-gp3dp Жыл бұрын
Mam ur way of teaching is too good Thanku mam for doing this for uss
@SwatiChawlaofficial
@SwatiChawlaofficial Жыл бұрын
Thanks and Welcome..
@aks_technical
@aks_technical Жыл бұрын
yes mam
@sonijain
@sonijain 2 жыл бұрын
I am glad that I came across this channel while searching for complete CS chapters videos🥰
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
Glad it helped . Thanku Keep Watching
@RajKumar-zc8hn
@RajKumar-zc8hn 2 жыл бұрын
Mam konse school ke aap PGT Computer science ke teacher hai.....
@RajKumar-zc8hn
@RajKumar-zc8hn 2 жыл бұрын
Everything mam crystal clear...... ❤️
@aruneshtulya3829
@aruneshtulya3829 3 жыл бұрын
mam could you make video on how to do exponential sum or finding factorial sum in python which are given cbse practical list
@SwatiChawlaofficial
@SwatiChawlaofficial 3 жыл бұрын
Sure... Will upload it soon
@snehlatajaiswal7366
@snehlatajaiswal7366 2 жыл бұрын
Thank you so much mam very nice explanation thank you mam🙏🙏
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
Thanks and Welcome
@TrishaVerma-l9i
@TrishaVerma-l9i 9 ай бұрын
In diff between pow() and math.pow() it is given that pow() does not return floating point value like math.pow() , but in ppt slide the result from pow() is in floating point??
@SwatiChawlaofficial
@SwatiChawlaofficial 9 ай бұрын
Depends on the version of Python
@anandprakashvishwakarma5616
@anandprakashvishwakarma5616 2 жыл бұрын
explanation is so good.
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
Thanku
@Vegito-OP
@Vegito-OP Жыл бұрын
Awesome mam it helps a lot Thank you 😌👍
@SwatiChawlaofficial
@SwatiChawlaofficial Жыл бұрын
Welcome
@SHIVAM-sx3zg
@SHIVAM-sx3zg 3 жыл бұрын
Nice explanation mam.
@SwatiChawlaofficial
@SwatiChawlaofficial 3 жыл бұрын
Thanku
@alwayslolling8821
@alwayslolling8821 3 жыл бұрын
Bhai I have made study grp do u want to join
@SHIVAM-sx3zg
@SHIVAM-sx3zg 3 жыл бұрын
@@alwayslolling8821 Ha bhai
@justlikeWEEB
@justlikeWEEB 2 жыл бұрын
maam for class 11 there are only math,random,and statistics module?
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
Yes
@justlikeWEEB
@justlikeWEEB 2 жыл бұрын
@@SwatiChawlaofficial ok maam thanku so much maam for all the amazing videos
@adarshdubey7843
@adarshdubey7843 10 ай бұрын
90° h mam or wo radians m Aya h na?
@aparnatresab9467
@aparnatresab9467 2 жыл бұрын
Ma'am for pow() we don't get the answer in decimal form right...we get decimal in math.pow() isn't it so. But in the presentation you showed pow(5,2) is 25.0 I'm sorry if what i said is wrong... Could you please correct me... I've exam tmrw
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
Yes...u r Correct.. In older versions of Python, even math.pow() returns in decimal form.. But..now only, in built function, pow() returns the result in integer form (only if both the values are integer) or in float form (if any of the value is in decimal form) whereas math.pow() returns result in decimal form..
@aparnatresab9467
@aparnatresab9467 2 жыл бұрын
@@SwatiChawlaofficial Ok thank you so much ma'am. I was waiting for your reply🥰😊💜💜💖
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
My pleasure
@KeshavYadav-kv3lv
@KeshavYadav-kv3lv 2 жыл бұрын
thank you soooo much mam
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
Welcome
@preetimishra4099
@preetimishra4099 2 жыл бұрын
Thank you
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
Welcome
@xaitpri7905
@xaitpri7905 2 жыл бұрын
Thanks mam🙏
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
Welcome
@shrestapriya4289
@shrestapriya4289 2 жыл бұрын
Ma'am what will output of this math.pow(7.6,2). ?
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
57.76
@shrestapriya4289
@shrestapriya4289 2 жыл бұрын
@@SwatiChawlaofficial mam kaise hoga
@nikhil3893
@nikhil3893 Жыл бұрын
​@@shrestapriya4289 use calculator. 7.6^2
@palakchauhan3871
@palakchauhan3871 2 жыл бұрын
math.ceil(1.3) gives 2 but in our book it is written as 2.0 Why ?? Plz reply ma'am I m having board exam after 2 days
@palakchauhan3871
@palakchauhan3871 2 жыл бұрын
@@rohansingh1584 But why she has shown answers in the video in integer form??
@akanksharani3596
@akanksharani3596 3 жыл бұрын
Mam plzzz give some questions on this topics
@RaghvendraSingh-zq1yr
@RaghvendraSingh-zq1yr 2 жыл бұрын
NYC video
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
Thanks
@Hintinfo
@Hintinfo 2 жыл бұрын
Sine function how does work
@komalbisht988
@komalbisht988 3 жыл бұрын
Urillib ki vedio dena mam 🙂
@krishsha9710
@krishsha9710 10 ай бұрын
love ur smile
@SwatiChawlaofficial
@SwatiChawlaofficial 10 ай бұрын
Thanks😀
@viplowjaiswal6327
@viplowjaiswal6327 3 жыл бұрын
We r commerce student how we will understand and know the output of various radian or degrees or trigonometric functions
@RadhaKrishnan-ty4fc
@RadhaKrishnan-ty4fc Жыл бұрын
Yess 🥲
@aruvasu6302
@aruvasu6302 Жыл бұрын
LEGEND WATCHING ONE NIGHT BEFORE EXAM😅😅😂😂😂😂
@SwatiChawlaofficial
@SwatiChawlaofficial Жыл бұрын
Best wishes for your exam
@suryadixit3247
@suryadixit3247 2 жыл бұрын
Maam aap plz sath me presentation bhi available kar dia kijiye
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
Sure..You can enjoy special perks by joining the membership. Have a look at this. kzbin.info/door/2vH9rqGh-fJELF8acGfBdwjoin
@legendsedits2279
@legendsedits2279 3 жыл бұрын
Excellent
@SwatiChawlaofficial
@SwatiChawlaofficial 3 жыл бұрын
Thanku..
@StudyGuru1504
@StudyGuru1504 2 жыл бұрын
tk mam
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
Welcome
@FactHorizonHQ
@FactHorizonHQ 11 ай бұрын
In trigonometry pi is not equal to 3.14😂 It is equal to 180 degrees Go first again learn 11th
@SwatiChawlaofficial
@SwatiChawlaofficial 10 ай бұрын
Right
@nisthayadav7350
@nisthayadav7350 3 жыл бұрын
Mam live session nahi hoga
@SwatiChawlaofficial
@SwatiChawlaofficial 3 жыл бұрын
Actually..I have conducted a Poll in my community tab.. Majority wants...recorded videos.. But don't worry...will take live sessions also...later on..
@nisthayadav7350
@nisthayadav7350 3 жыл бұрын
@@SwatiChawlaofficial ok mam
@alwayslolling8821
@alwayslolling8821 3 жыл бұрын
@@nisthayadav7350 bhai I have study grp in ig do u want to join
@nisthayadav7350
@nisthayadav7350 3 жыл бұрын
@@alwayslolling8821 yeah
@Factfinder524
@Factfinder524 2 жыл бұрын
Mam pdf he ky eski
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
Sure..You can enjoy special perks by joining the membership. Have a look at this. kzbin.info/door/2vH9rqGh-fJELF8acGfBdwjoin
@tmaskff491
@tmaskff491 Жыл бұрын
1:00
@IBMX65
@IBMX65 Жыл бұрын
14:30
@magsunny2331
@magsunny2331 2 жыл бұрын
I want ppt
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
Sure..You can enjoy special perks by joining the membership. Have a look at this. kzbin.info/door/2vH9rqGh-fJELF8acGfBdwjoin
@sarkarvivo
@sarkarvivo 10 ай бұрын
mam pdf pls
@SwatiChawlaofficial
@SwatiChawlaofficial 10 ай бұрын
Sure..You can enjoy special perks by joining the membership. Have a look at this. kzbin.info/door/2vH9rqGh-fJELF8acGfBdwjoin
@upgraduate
@upgraduate 2 жыл бұрын
Excellent
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
Thanks
@justlikeWEEB
@justlikeWEEB 2 жыл бұрын
maam for class 11 there are only math,random,and statistics module?
@SwatiChawlaofficial
@SwatiChawlaofficial 2 жыл бұрын
Yes
бабл ти гель для душа // Eva mash
01:00
EVA mash
Рет қаралды 9 МЛН
When u fight over the armrest
00:41
Adam W
Рет қаралды 26 МЛН
World’s strongest WOMAN vs regular GIRLS
00:56
A4
Рет қаралды 40 МЛН
Coding Was HARD Until I Learned These 5 Things...
8:34
Elsa Scola
Рет қаралды 663 М.
Functions in Python are easy 📞
10:38
Bro Code
Рет қаралды 555 М.
threading vs multiprocessing in python
22:31
Dave's Space
Рет қаралды 591 М.
бабл ти гель для душа // Eva mash
01:00
EVA mash
Рет қаралды 9 МЛН