What is Search: Definition and 350 Discussions

Abhay Bang and Rani Bang are Indian social activists and researchers working in the field of community health in the Gadchiroli district of Maharashtra, India. They have revolutionized healthcare for the poorest people in India and have overseen a programme that has substantially reduced infant mortality rates in one of the most poverty-stricken areas in the world. The World Health Organization (WHO) and UNICEF have endorsed their approach to treating newborn babies and the programme is currently being rolled out across India and in parts of Africa. Abhay and Rani Bang founded the Society For Education, Action and Research in Community Health (SEARCH) – a non-profit organisation, which is involved in rural health service and research. The couple is the winner of the Maharashtra Bhushan Award. Sanjay Gandhi Postgraduate Institute of Medical Sciences, Lucknow has conferred honourary doctorates on Abhay and Rani Bang. SNDT Women's University, Mumbai has also awarded honoris causa to Rani Bang. The Lancet has honoured the couple as "the pioneers of health care in rural India". Abhay and Rani Bang are the first recipients of the Distinguished Alumni Award from the Department of International Health at the Johns Hopkins Bloomberg School of Public Health. They were also inducted into the Johns Hopkins Society of Scholars. The Bangs are honoured for their leadership in community-based health care that is now helping to save the lives of millions of the most vulnerable newborns and children. During their careers, the Bangs have helped foster a renaissance in community-based primary health care. In 2016, Johns Hopkins University conferred the Distinguished Alumni Award upon them.

View More On Wikipedia.org
  1. @PK nd

    What are the ways we can search for alien life?

    Are we alone AND what are the ways we can search alien life?
  2. D

    Binary search tree, number of nodes formula

    Homework Statement Hello! Typical binary search tree has a number of nodes equal to 2^(n+1) - 1. I don't understand why we add 1 to the n? For example: a tree has a height 4. # # # # # # # # # # # # # # # each level has 2^i nodes; i = 0, 2^0...
  3. D

    Binary search math, log base 2 (n) issues

    Homework Statement Hello! Binary search requires O( log2(n) ) operations in the worst case. My math doesn't add up. I would be grateful for help. Homework Equations For example: Find number 8 in the set 1234578. The Attempt at a Solution The set contains n = 7 elements. 1) take the middle...
  4. RJLiberator

    In search of a Graphing Program for Excel data

    Here is essentially what I need to do for a school essay: I have an excel sheet with 200 points (x corresponding to A1 column values, y corresponding to B1 column values). I need to find a way to transfer this to a graphing program in quadrant 1 (all x,y coordinates are >= 1 and less than or...
  5. P

    SETI reborn—the new search for intelligent life

    SETI reborn—the new search for intelligent life A new influx of money has saved the Search for Extraterrestrial Intelligence (SETI) from collapse, but what does the future hold for our quest to discover intelligent life in the Universe? Continue reading...
  6. berkeman

    Intel drops Science Talent Search

    This is bad news, but hopefully some other good corporate sponsor will pick up the ball... I've been to a couple of these STEM fairs in the past (as an observer), and the breadth and quality of many of the projects is truly amazing...
  7. O

    Dark matter particle search at CERN vs cosmology simulations

    Dark matter particle candidates are being searched at CERN and the various dark matter models are being probed by cosmological simulations. The usual way to probe models via cosmology is to plug a candidate into a cosmological simulation and then compare the results with observations. Yet...
  8. R

    In search of Julia Sets and ChaosPro Training

    Hello everyone. I am looking for some free software to produce a Julia Set that would allow me to enter the equation. I would prefer it to be downloadable software, but if a web applications all there is that will do. It's preferable that a color scheme can be chosen, or at least used. Also, I...
  9. D

    Caustics/Cusps Software Search

    Hello folks, I'm looking for a free programme to play with caustics/cusps. Does anyone know where I can find one? If not does anyone have any suggestions as to how to write a script for one in gfortran? Preferably all I'm after is a way to make quick plots of cusps in 2D. Cheers and thanks a...
  10. H

    Bidirectional Search (graph theory)

    Attempt at solution This is an old exam question. Am I correct to say the shortest path goes through M since M is in d(O,M) and d(D,M)? I don't know how to prove this and answer the question about the cost
  11. E

    Search in a skip list at O(logk)

    I need to write a code that finds element x in a skip list. I need to implement that in O(logk) expected running time, where k is the location of x at the list (i.e., there are k-1 elements before x in the list). I know how to do it at o(logn), but not o(logk). can you show me the way? I need...
  12. StevieTNZ

    FireFox 37.0.2 - Return Search

    For some reason I managed to click on something that made the google search area on the toolbar disappear. How do I get it back? This is what it currently looks like: But I want it to look like this; Thanks!
  13. Y

    Why steepest descent gives a wrong direction search?

    1. Homework Statement I have to minimize the function (x1-1)2+x23+x1x2 by the steepest descent method. The initial point is [1,1]T Homework EquationsThe Attempt at a Solution The gradient of this function is ∇ƒ(x1,x2)=[2(x1-1)-x2 3x22-x1]. This...
  14. M

    Calculators Ti-nspire cx cas search function?

    Is it possible to search for a word on a document after I have sent it to my ti-nspire cx cas calculator?
  15. NaughtyBear

    Programming Question (Python) - Boolean Binary Search

    So I am in my Intro to CS course and they are going over Binary searches via an algorithm to search for simple things. The code goes as this: Set first to 0 Set last to length-1 Set found to FALSE WHILE (first <= last AND NOT found) Set middle to (first+last)/2 IF...
  16. Math Amateur

    MHB Search for Senior Undergraduate Text on Lie Theory and Groups

    I am looking for a good text at senior undergraduate level on Lie Theory, and in particular, Lie Groups ... Does anyone have any suggestions? Peter
  17. Feeble Wonk

    In Search of Causal Relationships

    I'm hoping for some help finding an alternative forum for this search. As a non-physicist pathologically curious about admittedly philosophical questions regarding physical concepts, I often come to PF for clarification of ideas that I'm chasing. Unfortunately, these ideas almost always boil...
  18. M

    Difference between Google search in web and in videos

    Hi. When I make a search on Google, usually there are more pages in videos search than in web search? This situation bewilders me because, shouldn't web search comprise the video search. This shows that web search doesn't mean everything search in spite of my wrong belief. So what is the...
  19. G

    Guitarist in search of practical answers

    Just signed up to see if I could obtain any guidance on this topic. I'll start with some background. As a guitarist, I exist within a set group that, by and large, is in love with 1958 - the Gibson Les Paul, Fender Stratocaster, and some other influential late 50's and 60's instrument designs...
  20. Y

    MHB Solving \[x^{4}-4x^{3}+10=0\] with a "Binary Search

    Hello all I am trying to draw a graph of a function. On the way, I wanted to see where the function meet the x axis, so I put y=0. It gave me this: \[x^{4}-4x^{3}+10=0\] How do I solve this equation ? Thanks ! I tried a "binary search" and got really close to the answer, but I guess there...
  21. Henry R

    MHB How to Build a Binary Search Tree with Given Data?

    Draw a Binary Search Trees (BST) produced when data containing 30,40,50,60,10,20,55,15 is inserted one by one. Thanks.
  22. Henry R

    MHB How Do You Write a Function for Depth First Search in Graph Traversal?

    Hello... how to write the function of depth first search? Thank you.
  23. M

    Schools Thesis in search of university, regarding Carnot and Kelvin

    Greetings, A Thesis regarding the historical accuracy of portrayal Sadi Carnot and Lord Kelvin's work seeks a University. It is based largely on the images below (note highlighted areas), taken from their original work. As you know, Sadi Carnot and Lord Kelvin are the fathers of the science of...
  24. evinda

    MHB Analyzing Depth-first Search Edge Types

    Hello! (Wave) I want to apply the Depth-first search algorithm at the following graph. We consider that at the iteration of the algorithm, we look at the nodes alphabetically. Also the nodes are registered alphabetically in each list. I want to calculate the "discovery" time and the "finish"...
  25. S

    Why does name of the university matter so much in job search

    I am a bit frustrated with my current job search and I was wondering if people at PF could give some guidance. I am a doctoral graduate in Electrical Engineering from a low ranked university (~ 180 US News overall ranking). Although a EE doctorate most of my work was in materials...
  26. E

    How do I search for wordpress profiles?

    I recently created a wordpress blog and am trying to find some friends on there. There doesn't appear to be any search option, so how do I find the blogs I'm looking for?
  27. evinda

    MHB Divide Binary Search Tree at Key k: Algorithm & Analysis

    Hello! (Wave) Given a binary search tree $B$, I want to write an algorithm, that divides $B$ into two new trees $B_1, B_2$, so that the first one contains all the keys of $B$ that are smaller than $k$ and the second one contains all the keys of $B$ that are greater than $k$. Hint : Execute a...
  28. evinda

    MHB Analyzing Time Complexity and Memory of Binary Search Algorithm

    Hello! (Wave) I want to show that the $T(n)$ of the following algorithm is equal to $O(\log n)$. How can we do it, now that we have if, else conditions? (Thinking) int BinarySearch(int A[1…n], int y, int low, int high) { if (high < low) { return -1; //not found } mid = low + (high -...
  29. M

    A question about search engines.

    Can you explain me why search engines sometimes can not find existing entries. I can find them in the site, I can see them but Google and Bing can not find them. Best Regards.
  30. evinda

    MHB Apply Depth-first Search Algorithm Example

    Hello! (Wave) I want to apply the algorithm of the depth-first search at an example. Depthfirstsearch(G) for each v ∈ V color[v]<-white p[v]<-Ø time<-Ø for each u ∈ V if color[u]=white then Visit(u) Visit(u) color[u]<-gray time<-time+1...
  31. gfd43tg

    Binary Search Tree Homework - Setup BST & Write Functions

    Homework Statement Binary search trees In these problems you will set up a binary search tree and write some associated functions that make the search tree useful. Loading the data file students.mat (downloaded with this assignment) places a cell array called Students in the workspace...
  32. gfd43tg

    Is Depth-First Search Order for Graph Traversal Direction-Agnostic?

    Hello, I drew up this graph to try and understand the concept of depth-first search. Starting at node C, I was wondering if its correct for the order to be C-A-B-D or C-B-A-D? It seems like you can traverse in either direction without a problem.
  33. A

    New physics BS grad - job search help?

    Just got my physics BS, looking for any tips for job hunting and job titles that I could be qualified for. I've been running into constant walls trying to find jobs that I'm qualified for with just a Physics BS Any help would be greatly appreciated, and if anyone has tips for finance related...
  34. M

    UV Transparent Boiling Flask Search

    Hello! First post here, so hopefully I'm not doing anything wrong. I've hit a dead end with an experiment and could use some additional perspective. I'm in need of material for a 100 mL round boiling flask that has good transparency down to about 140 -180 nm. I originally considered Type 214...
  35. mesa

    Need sources to search for gamma function infinite series identities.

    I have a hard time believing we only have the limited number of series I have seen so far especially considering how much broader mathematics is than I had thought just a short while ago. Where should I search to find more infinite series summations for the gamma function? For example which...
  36. O

    What Are Some Good Search Engines That Prioritize Keyword Accuracy?

    I'm fed up with google. It returns results that don't have all my keywords in it. Just now I searched for "Skyrim Playonlinux" and it returned several top results involving Skyrim Wine (wine as in drink, in the game), since Wine is related to playonlinux. What is a good search engine that...
  37. S

    Where Can I Find a Used Force Gauge for Measuring Paragliding Line Strength?

    Hi there, firstly I have to apologize if this is not the right section of the forum to post my question... Well, what I need is a more sophisticated Newton meter, to measure the force on the line. Let me describe the whole thing: I am a paragliding pilot and we use gliders that have lots...
  38. E

    Learning GRT: Why the High Frequency Search?

    I am trying to learn GRT so I can answer questions for myself. But I might croak first, so I’ll ask here. That gravity wave interferometer they are building out in Richland, Washington - I obviously haven’t read all the technical papers on their web site, but I am pretty sure one I did read...
  39. DennisN

    Particle Fever: Exploring the Search for the Higgs Boson

    There's a recent (released?) documentary called "Particle Fever" about the search for the Higgs boson. I'm not sure if it's been released yet. Has anyone seen it yet? Some info: Particle Fever editor Walter Murch: 'The Higgs boson is kind of a MacGuffin' David Kaplan Explains why the...
  40. J

    MHB Discrete Mathematics Binary Search

    How many comparisons are performed to find 13 in the following list by using Binary Search? 7, 12, 5, 22, 13, 32 Is it true that there are 10 comparisons performed to find 13 in the following list by using Binary Search? If this isn't right, then can somebody please help explain this to me?
  41. P

    How to search a data frame by x and y cords in R

    Hi Readers, I seem to have hit an elementary snag while fiddling in R... i have a 5x5m surface interpolated at intervals of 0.01... giving 250,000 squares in my grid. i have roughly 20-30 xy cords where i want to retrieve the z value out of the data frame. does anyone know how to search an x y...
  42. B

    What is the best way to search for research papers?

    Hello all, Suppose I want to find all publications by X author. What is the best way to do this? I am overwhelmed by all the options out there. Also, how does it all work? What I mean by this is, when you publish something, say in Phys. Rev., does Web of Knowledge and Arxiv get automatically...
  43. R

    In search of applications of radiation pressure

    can anyone tell me the applications of radiation pressure? i have manged to find out one application i.e in solar sails but still my instructor is demanding more applications. i have also found an abstract of an article its about Adiabatic electron thermal pressure fluctuations in tokamak...
  44. Todee

    Java How to make a search engine by Java ?

    want some sites to teach me how to develop a simple web-based search engine that demonstrates the main features of a search engine (web crawling, indexing and ranking) and the interaction between them. Using Java :confused:
  45. A

    Going to Grad School In Lieu of an Unsuccessful Job Search

    Hello everyone, I am wondering what your opinions are on going to graduate school if a job search isn't working out. While I would like to get a PhD, and always have, the fact of the matter is that I need money and cannot fund that type of commitment. The main problem with my resume is that it...
  46. sbrothy

    Can AI be used to search for a theory of quantum gravity?

    I'm somewhat awed by this paper: The emergence of complex behaviors through causal entropic forces. Now, I'm not a scientist or anything so bear with here: Shouldn't it be possible to use this approach to find solutions to Newton's equations such as solving the three-body-problem etc? And...
  47. N

    Turing machine depth-first search algorithm

    Homework Statement On the tapes of Turing machine recorded the number of vertices (n) in the binary system, the length of the desired cycle - k (in binary), and the adjacency matrix of the graph. Required to construct a Turing machine, which checks for the cycles of k-length in the graph, and...
  48. wolram

    Why Do We Search for Exoplanets?

    What is the reason for searching for exoplanets? i can think of many reasons why not, including we will never build a spacecraft to visit them, when we get there conditions for human life may not be suitable for human life, this would mean building a spacecraft that could return to earth, which...
  49. N

    Why did we search for higgs boson when we knew it couldn't be useful?

    Firstly, thank you all for creating this forum, thank you all for tolerating my questions. As an expert in another subject, I know it's not easy to take time out of one's schedule to answer the questions of non-experts, and I am grateful that you guys have. That said, this question is a...
  50. D

    Does the order of insertion affect the structure of a binary search tree?

    Homework Statement I need to prove that different insertion orders of the same keys always gives us a different binary tree. Homework Equations All obvious BST properties apply: The left subtree of a node contains only nodes with keys less than the node's key. The right subtree of a...
Back
Top