# How to make a Proximal Point using Julia

**URL:** https://discourse.julialang.org/t/how-to-make-a-proximal-point-using-julia/130132
**Category:** Optimization (Mathematical)
**Created:** [June 23, 2025, 12:52pm UTC](https://discourse.julialang.org/t/how-to-make-a-proximal-point-using-julia/130132 "2025-06-23T12:52:46Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Deyvid\_Andrade](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/deyvid_andrade/32/217431_2.png) [@Deyvid\_Andrade](https://discourse.julialang.org/u/Deyvid_Andrade)
#### Post date: [June 23, 2025, 12:52pm UTC](https://discourse.julialang.org/t/how-to-make-a-proximal-point-using-julia/130132/1 "2025-06-23T12:52:46Z")

</div>

I am new to julia and I’d like create an iterative function that can to modeling the proximal point method. And, apply to solve an equilibrium problems, i.e.,  
Given function f(x,y) convex only in x, the algorithm is defined as  
x^(k+1)=argmin(y in domf) f(x,y) + ||y-x||^2.

---

<div class="post-metadata">

### Author: ![odow](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/odow/32/28685_2.png) [@odow](https://discourse.julialang.org/u/odow)
#### Post date: [June 23, 2025, 1:53pm UTC](https://discourse.julialang.org/t/how-to-make-a-proximal-point-using-julia/130132/2 "2025-06-23T13:53:34Z")

</div>

Hi @Deyvid_Andrade, welcome to the forum 😄

Are you looking for an existing solver and you have a specific problem you want to solve? Try Optim.jl.

If you want to code the algorithm yourself, what have you tried so far?

---

<div class="post-metadata">

### Author: ![Praxist](https://avatars.discourse-cdn.com/v4/letter/p/71c47a/32.png) [@Praxist](https://discourse.julialang.org/u/Praxist)
#### Post date: [June 23, 2025, 2:28pm UTC](https://discourse.julialang.org/t/how-to-make-a-proximal-point-using-julia/130132/3 "2025-06-23T14:28:00Z")

</div>

There are [ProximalOperators.jl](https://github.com/JuliaFirstOrder/ProximalOperators.jl) and [ProximalAlgorithms.jl](https://github.com/JuliaFirstOrder/ProximalAlgorithms.jl).
