Researcher profile

Surabhi Gupta

Surabhi Gupta contributes to research discovery and scholarly infrastructure.

ResearcherAffiliation not importedOpen to collaborate

Trust snapshot

Quick read

Trust 17 - Baseline
4works
0followers
4topics
4close collaborators

Actions

Decide how to stay connected

Follow researcher0

Research graph

See the researcher in context

Open full explorer

Inspect adjacent work, topics, institutions and collaborators without jumping out to a separate graph page.

Building this graph slice

BZPEER is loading the nearby papers, people, topics and institutions for this page.

Published work

4 published item(s)

preprint2022arXiv

Higgs boson in a flavor-extension of the CMSSM

Flavour-violating couplings of Higgs boson with stop and scharm quarks could be very important as in addition to lifting the mass of the Higgs boson by a few GeV, it could also play a vital phenomenological role in reducing the Supersymmetry breaking scale significantly. In this work, we investigate effects of such flavour-violating couplings within the Constrained Minimal Supersymmetric Standard Model (CMSSM) framework in the context of LEP data, Higgs data at the LHC, precision observables and the relic density of the dark matter using Bayesian statistics. Our detailed analysis reveals that the most probable values of $m_{0}$, $m_{1/2}$, $A_{0}$, $\tanβ$, $δ^{LR}_{ct}$ are expected to be around 4.83 TeV, 2.54 TeV, 1.90 TeV, 41.5, and 6.1$\times10^{-2}$, respectively, with flat priors. The corresponding values translate into 3.25 TeV, 2.13 TeV, 1.90 TeV, 44.7, and 5.9$\times10^{-2}$, respectively, if the natural priors are used. Furthermore, a comparison of our model with the CMSSM of flavour-conservation as the base model yields a Bayes factor of about 6 while taking into account all the experimental constraints used in our study. Our analysis also reflects that the lightest neutralino would have a mass of about 1 TeV.

preprint2022arXiv

Investigating non-minimal flavour-violating CMSSM in the light of Higgs-Boson mass using information theory

Flavour-violating interactions of the stop-quarks are expected to provide an additional few GeV contributions to the Higgs-Boson mass, particularly when mix with scharm-quarks, thereby allowing reduced supersymmetry (SUSY) breaking scale compared to flavour-conserving constrained minimal supersymmetric Standard Model (CMSSM). Inspired by this, we analyse the interactions mentioned above in the context of CMSSM using the information entropy of the Higgs-Boson for a wider region of flavour-violating CMSSM parameter space $(m_0,m_{1/2},A_0,$ $\tanβ,sgn(μ),δ_{ct}^{ij})$, where $δ_{ct}^{ij}$ represents the flavour-violating coupling of the top-quark with the charm-quark and $i, j$ defining left and right chiralities of squarks. Our information-theoretic analysis of the model mentioned above reveals the most favourable values of $(m_0, m_{1/2},A_0, \tanβ,δ_{ct}^{ij})$ as $(4.30 {\rm~TeV}, 2.32 {\rm~TeV}, -4.96{\rm~ TeV},$ $ 22.8,0.037)$ and $(4.16 {\rm ~TeV},$ $3.89~{\rm TeV},-4.10~{\rm TeV}, 19.4, 0.039)$ for $(i, j) = (L, R)$ and $(R, L)$, respectively, corresponding to the maximum entropy which suggest the SUSY breaking scale to be about $5$ TeV, thereby allowing considerable low values of sparticles masses than the flavour-conserving CMSSM.

preprint2021arXiv

An Information Theoretic Exploration of Constrained MSSM

We discuss information theory as a tool to investigate constrained minimal supersymmetric Standard Model (CMSSM) in the light of observation of Higgs boson at the Large Hadron Collider. The entropy of the Higgs boson using its various detection modes has been constructed as a measure of the information and has been utilized to explore a wide range of CMSSM parameter space after including various experimental constraints from the LEP data, B-physics, electroweak precision observables and relic density of dark matter. According to our study while the lightest neutralino is preferred to have a mass around 1.92 TeV, the gluino mass is estimated to be around 7.44 TeV. The values of CMSSM parameters $m_0$, $m_{1/2}$, $A_0$ and $\tanβ$ correspond to the most preferred scenario are found to be about 6 TeV, 3.6 TeV, $-$6.9 TeV and 36.8 respectively.

preprint2020arXiv

Optimizing Cursor Loops in Relational Databases

Loops that iterate over SQL query results are quite common, both in application programs that run outside the DBMS, as well as User Defined Functions (UDFs) and stored procedures that run within the DBMS. It can be argued that set-oriented operations are more efficient and should be preferred over iteration; but from real-world use cases, it is clear that loops over query results are inevitable in many situations, and are preferred by many users. Such loops, known as cursor loops, come with huge trade-offs and overheads w.r.t. performance, resource consumption and concurrency. We present Aggify, a technique for optimizing loops over query results that overcomes all these overheads. It achieves this by automatically generating custom aggregates that are equivalent in semantics to the loop. Thereby, Aggify completely eliminates the loop by rewriting the query to use this generated aggregate. This technique has several advantages such as: (i) pipelining of entire cursor loop operations instead of materialization, (ii) pushing down loop computation from the application layer into the DBMS, closer to the data, (iii) leveraging existing work on optimization of aggregate functions, resulting in efficient query plans. We describe the technique underlying Aggify and present our experimental evaluation over benchmarks as well as real workloads that demonstrate the significant benefits of this technique.